We are also facing this problem. Too many DeadlineExceededError. We also use Django 1.1 but the same app usually loads within 500ms, and today we have been down for about 20 minutes.
Now we have deployed the version precompiling the app (just changing app.yaml and deploying) and so far we haven't found any DeadlineExceededError but still a bunch of 500 error responses, which in the logs appear as warnings: "Request was aborted after waiting too long to attempt to service your request. This may happen sporadically when the App Engine serving cluster is under unexpectedly high or uneven load. If you see this message frequently, please contact the App Engine team." Something is not working fine today definitively. Someone from Google can give us an explanation please? Thanks On Sep 22, 5:12 pm, Blixt <[email protected]> wrote: > In my case it's throwing a DeadlineExceededError before it even > reaches the code responsible for handling the request, meaning there > are no service requests at all before the error, only imports. It > occurs mostly when starting a new instance of the application so yes, > it's related to the imports taking too long. But importing Django 1.1 > shouldn't take 30 seconds (that's the time for every request with > DeadlineExceededError). > > On Sep 22, 5:41 pm, Geoffrey Spear <[email protected]> wrote: > > > On Sep 22, 10:25 am, Fredrik Bonander > > > <[email protected]> wrote: > > > Yes. But I can't see how this is relevant since (at least for me) the > > > error always occur during datastore calls (at least for me) > > > If the requests it's happened on are always loading requests (they'll > > have an INFO-level logging message to that effect), it's likely > > because your framework is taking a long time to import everything, > > giving you less time to do datastore calls after the imports. If > > they're not just on loading requests, maybe you're trying to squeeze > > too many (or too large) datastore calls into a request. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
