What's the best way to get data back from a Task in GAE to form a loop of Task Queues?
问题 I have a long-running process in a task queue that is causing a DeadlineExceededError because the task can take longer than 10 minutes. As I described in this question, the long-running process has a for loop that sequentially calculates new values in large dictionaries that are used to create kml files. The task currently looks like this: class longprocess_handler(webapp2.RequestHandler): def post(self): #This is currently one task that recursively uses data in dictionaries to #produce kml