RE: [google-appengine] How to catch Out of Memory errors?

2011-12-06 Thread Brandon Wirtz
-appengine] How to catch Out of Memory errors? Sometimes I wonder if you really use GAE too ;) Or are Java and Python this different? All ServletResponses and Log-Events are (for me) cached (and flushed only at the end of the request). E.g.: If you have a 1 hour backend job no log entry

Re: [google-appengine] How to catch Out of Memory errors?

2011-12-06 Thread André Pankraz
Sometimes I wonder if you really use GAE too ;) Or are Java and Python this different? All ServletResponses and Log-Events are (for me) cached (and flushed only at the end of the request). E.g.: If you have a 1 hour backend job no log entry appears in the Admin console till the request is com

RE: [google-appengine] How to catch Out of Memory errors?

2011-12-05 Thread Brandon Wirtz
y find you have a loop until the end of time statement somewhere From: google-appengine@googlegroups.com [mailto:google-appengine@googlegroups.com] On Behalf Of Waleed Abdulla Sent: Monday, December 05, 2011 7:17 PM To: google-appengine Subject: [google-appengine] How to catch Out o

Re: [google-appengine] How to catch Out of Memory errors?

2011-12-05 Thread Waleed Abdulla
m:* google-appengine@googlegroups.com [mailto: > google-appengine@googlegroups.com] *On Behalf Of *Waleed Abdulla > *Sent:* Monday, December 05, 2011 7:17 PM > *To:* google-appengine > *Subject:* [google-appengine] How to catch Out of Memory errors? > > ** ** > > I&#x

RE: [google-appengine] How to catch Out of Memory errors?

2011-12-05 Thread Brandon Wirtz
to catch Out of Memory errors? I'm getting a lot of "Out of Memory" errors, and when that happens GAE just kills the instance right away and all I see in the logs is something like this: Exceeded soft private memory limit with 277.09 MB after servicing 1 requests total

[google-appengine] How to catch Out of Memory errors?

2011-12-05 Thread Waleed Abdulla
I'm getting a lot of "Out of Memory" errors, and when that happens GAE just kills the instance right away and all I see in the logs is something like this: Exceeded soft private memory limit with 277.09 MB after servicing 1 requests total To find where the problem is, I put logging.info() st