We just learned that there is a limit to how fast you can defer to the task queue. You can only have 10 async requests open at a time, so if you try to defer 100 things number 11-100 will fail if the scheduler for task 1 doesn’t respond by the time you get to 11.
This is really annoying since If the scheduler responds half as fast as you try to add them you will get something like 1-12, 15-18, 20-23, 27-29, and so on and so forth. We spent a bit of time figuring out why our updates would have chunks missing, especially since days the defers were running fast everything would work. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/groups/opt_out.
