On Mon, Jan 26, 2015 at 1:31 PM, Vinay Mavi <[email protected]> wrote:
> I got Error. > A problem was encountered with the process that handled this request, > causing it to exit. This is likely to cause a new process to be used for > the next request to your application. (Error code 202). > In this request.* I am reading data from Google Cloud Storage and trying > to Insert 100000+ Entries in Google Cloud Datastore.* > with this end point api. > Error 202 occurs even during normal App Engine operations. Usually it's nothing to worry about - the next instance will open and handle the requests. However if you're seeing a lot of 202 errors, you may be hitting memory constraints. Try using a bigger instance size <https://cloud.google.com/appengine/docs/adminconsole/performancesettings#Setting_the_Frontend_Instance_Class>, using smaller input files, writing to the datastore in smaller batches, or setting a sleep time between processing a batch of data. Do you see a specific error while running? For example, do the errors occur while processing a particularly large entity, or a large batch of entities, or after a certain amount of entities have been processed, etc? ----------------- -Vinny P Technology & Media Consultant Chicago, IL -- 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/CALSvALANpz3rfM7v8JjHy1PXB0psyPQLAjnFnTtipH-LAjqcwA%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
