How To Increase 10min Http Request Using Taskqueue.add() In Google Appengine Python
My http request is showing deadline error like your soft memory 120mb out of 12 requests . here i want to increase http request time 10min with taskqueue.add() method.thanks in adv
Solution 1:
It sounds like you're hitting the "Exceeded soft private memory limit with X MB after servicing Y requests total" error rather than a DeadlineExceededError. If that's the case, What is the “soft private memory limit” in GAE? has some pointers.
Scaling your instance class can bump your memory limit up to 1 GB and should resolve this.
Post a Comment for "How To Increase 10min Http Request Using Taskqueue.add() In Google Appengine Python"