Hi This is a problem in your application code. As the error says, you are using too much memory and the instance is being killed.
You haven't said if you use python or java. If you are using python then have a look at apptrace (The apptrace package provides a WSGI middleware for tracking memory usage in Google App Engine Python applications.) http://docs.pylonsproject.org/projects/pyramid_tutorials/dev/wiki2_auth/index.html Bottom line is you will need to do some profiling and debugging to work out where you are either consuming too much memory or leaking (keeping around globals that grow for instance). Rgds T -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
