On Sat, Jan 17, 2015 at 1:10 PM, Jason Brownell <[email protected]> wrote: > > Could it be related to the rate at which the app is accessing the > resource, rather than the absolute number of calls? >
Usually when that happens, a yellow "Caution" triangle appears next to the quota bar on the classic App Engine console (the one located at appspot.com ). On Sat, Jan 17, 2015 at 1:10 PM, Jason Brownell <[email protected]> wrote: > This happens on a push task queue where a relatively large number of calls > are made in a relatively short amount of time?? I am pretty desperate for a > workaround. > If you can, I would try spacing out the calls: try lowering the processing rate <https://cloud.google.com/appengine/docs/python/config/queue#Python_Defining_push_queues_and_processing_rates> or declaring a random countdown/eta <https://cloud.google.com/appengine/docs/python/taskqueue/tasks#Task_eta> for each task. ----------------- -Vinny P Technology & Media Consultant Chicago, IL App Engine Code Samples: http://www.learntogoogleit.com -- 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. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/CALSvALAOJ0d%2B32eN8S3P%3DGMHV6r8JXGrtbsHPiw2H9OR_Rm11g%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
