On Tue, Dec 3, 2013 at 8:39 PM, Bob Achgill <[email protected]> wrote:
> W 2013-12-03 15:02:59.057 Error for /formUpload > com.google.apphosting.runtime.HardDeadlineExceededError: This request > (9dea7532f733c6cc) started at 2013/12/03 23:01:59.072 UTC > C 2013-12-03 15:02:59.059 Uncaught exception from servlet > com.google.apphosting.runtime.HardDeadlineExceededError: This request > (9dea7532f733c6cc) started at 2013/12/03 23:01:5 > W 2013-12-03 15:02:59.074 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 > HardDeadlineExceededErrors are generally caused by requests exceeding the 60 second request timer. What type of data are you uploading to this form, and are you doing any large file uploads? Are you doing any heavy processing within the request? Try increasing the instance class size ( https://developers.google.com/appengine/docs/adminconsole/performancesettings); allocating more RAM and processing power to the request might help it return faster. You can also try moving */formUpload* to run on a backend instance, which allows an indefinitely long request timer: https://developers.google.com/appengine/docs/java/backends/ . ----------------- -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.
