Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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">

share|improve this question

2 Answers

up vote 3 down vote accepted

That's approximately the same error rate I see. Just do an exponential backoff and retry.

share|improve this answer
I also saw higher than expected error rates, so implemented a retry, too. – Brad Tofel Sep 18 '12 at 16:33
Thanks for your suggestion, but I'd like to know whether the google drive API error rate is expected. I reported a bug to google, got no response yet. – evanchin Sep 19 '12 at 2:22

Because Google infrastructure is complex, large scale and distributed it is close to impossible to have a 0% error rate - servers or hard disks dying during the request, unexpected timeouts between servers internally, datacenter outage or increased load, tentative DOS attacks, misbehaving applications... - all of which might raise the 500's error rate - so as a general good practice, implementing an exponential backoff and retry strategy on your end is good when you deal with Web APIs and actually it is almost mandatory if you want to offer a reliable service, also on your end it might smooth out temporary network glitch etc...

Now 0.5% is a bit high, I believe the global error rate is lower in average but I'm going to bring it up to the Drive team so they investigate and try to reduce this (sometimes it's just about increasing a timeout to one of our server dependencies). We're always taking passes at reducing the error rate but sometimes we have to spend time building new features especially when the products are rather new :)

share|improve this answer
Thanks very much for your comprehensive response, I've added backoff and retry to these API calls, so far so good. – evanchin Oct 15 '12 at 13:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.