Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google App Engine's Blobstore is applicable to 30 seconds request timeout?

Google App Engine imposes a 30 seconds timeout for every request. Is this applicable when uploading to the blobstore?

Thanks!

like image 869
Link Avatar asked Jan 29 '10 01:01

Link


1 Answers

No. Even with regular requests to your app, the 30 second limit only applies to time your application spends processing requests. The timer does not include time the server takes to receive the request nor time spent sending the response back to the user.

like image 61
Wooble Avatar answered Oct 02 '22 19:10

Wooble