On Thu, Nov 7, 2013 at 11:06 AM, <[email protected]> wrote: > I believe it's hanging when I'm calling AdWords apis (I have tried > breaking these calls up a bit, waiting a little between batches, not > caching the urlfetch) but I lose some of the logging when I get this error > and can't seem to figure out if there are local variables eating up all the > memory or if I need to continue to break up the api calls.Is there any way > to help me diagnose? >
To inspect the urlfetch calls to Adwords, you can install AppStats ( https://developers.google.com/appengine/docs/python/tools/appstats ). If those calls are hanging, you'll see it in the performance report. As for the memory issues, try increasing your application's instance class; i.e. if you're currently using a B1 sized module, try going up to B2 for a day and see if it fixes the problem. Of course, this is just a temporary band-aid until the memory-hog can be found. ----------------- -Vinny P Technology & Media Advisor 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. For more options, visit https://groups.google.com/groups/opt_out.
