Google Drive REST API v3.
I use resumable upload for uploading files of any size. If I encounter any problem while uploading a file, I wait for exponential backoff, then ask current upload session for the byte range and then continue from the last uploaded byte. This process repeats up to 5 times. If the file was not uploaded successfully after all, I write an error to a log.
Unfortunately, I did not logged all the intermediate errors, so all I have is that the last error was "410, description: Internal Error".
The file was less than 1Kb and the whole process took about 17s before the error was logged.
My case is very similar to the one described in question Google Drive Api Upolading File Error with error code 500 Inernal server error and 410 Gone, but I do use exponential backoff, so the upload session token could not expire. Additionally, it is not "410 Gone", but "410 Internal Error".
I want to know what could cause "410 Internal Error" and how should I react to it.