Re: [google-appengine] Task queue doesn't run all of the tasks and HTTP requests fail

2012-05-14 Thread Amy Unruh
David, The bucket_size and max_concurrent_requests do determine how many tasks are running at once. It sounds like you probably want to increase your bucket size for your use case. If you are seeing the last three tasks in the queue even after the others have finished, then as a starting point c

[google-appengine] Task queue doesn't run all of the tasks and HTTP requests fail

2012-05-10 Thread David Phillips
I have an app running on a backend. It has 11 tasks. The first one is started by /_ah/start and it, in turn, starts the other ten, the worker tasks. The worker tasks have this structure: while True: # Do important stuff # time.sleep (30) The execution behavior on app engine is the s