[google-appengine] Re: How do you avoid this message: "Request was aborted after waiting too long to attempt to service your request"

2010-10-03 Thread Jan Z/ Hapara
Two workarounds that we know of: a) make each task execution run in under 1 sec. This actually solves the problem. In practice this means respawning tasks, which is a pain, but can generally greatly improve things b) skew the execution time average. If your tasks take 10 seconds to run, you wi

[google-appengine] Re: How do you avoid this message: "Request was aborted after waiting too long to attempt to service your request"

2010-10-01 Thread onur
I see this issue here: http://code.google.com/p/googleappengine/issues/detail?id=2396&colspec=ID%20Type%20Status%20Priority%20Stars%20Owner%20Summary%20Log%20Component This is actually serious. I've changed all my code to make it parallel, but this issue ruins everything :( should be fixed asap.