We have a service which highly depends on Google Drive (uses Python SDK got from https://developers.google.com/api-client-library/python/), our service goes through google drive collections and files.
Checked production log, we found there are many http 500 server internal errors when we call google drive API drive.files.get, the http 500 error rate about 0.5%. When I did investigation, the extreme case is continuous 9 http 500 failure in one hour with drive.files.get API.
BTW: Our service is hosted on Amazon Web Service, US WEST-2 data center.
Any one has similar issue?
Any help are appreciated.
Exception call stack like below:
__File "/home/xxxxxx/xxxxxxx/storage.py", line 1185, in get_file
___gdrive_file = self.client.files().get(fileId='0Bxn2GmQxR4zHYlNvaUlFNjl6MkE', fields='id,title,modifiedDate,createdDate,fileSize,mimeType,downloadUrl,labels').execute()
_File "/usr/lib/python2.7/dist-packages/apiclient/http.py", line 389, in execute
__raise HttpError(resp, content, self.uri)
__HttpError: https://www.googleapis.com/drive/v2/files/0Bxn2GmQxR4zHYlNvaUlFNjl6MkE?fields=id%2Ctitle%2CmodifiedDate%2CcreatedDate%2CfileSize%2CmimeType%2CdownloadUrl%2Clabels&alt=json returned "Internal Error">
