Normally you get those errors because of the simultaneous  request
limitation.

Check out 
http://code.google.com/appengine/docs/python/runtime.html#Quotas_and_Limits

* An application can process around 30 active dynamic requests
simultaneously. This means that an application whose average server-
side request processing time is 75 milliseconds can serve up to (1000
ms/second / 75 ms/request) * 30 = 400 requests/second without
incurring any additional latency. Applications that are heavily CPU-
bound may incur some additional latency in long-running requests in
order to make room for other apps sharing the same servers. Requests
for static files are not affected by this limit.

On Mar 11, 5:19 am, vivpuri <v...@vivekpuri.com> wrote:
> Requests are getting processed really slow today. Error rate for my
> app is way up for the past 6 hours without any significant code
> changes. Quite a few requests are ending up with -
>
> "Request was aborted after waiting too long to attempt to service your
> request........"
>
> Anyone else facing similar issue?

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to