Re: [appengine-java] Re: Request was aborted after waiting too long to attempt to service your request

2011-12-12 Thread kwanja9999
-appengine-java@googlegroups.com Reply-To: google-appengine-java@googlegroups.com Subject: [appengine-java] Re: Request was aborted after waiting too long to attempt to service your request Hi App Engine Team, I wanted to add more info for this issue. My App is in Development. I am experiencing

[appengine-java] Re: Request was aborted after waiting too long to attempt to service your request

2011-12-11 Thread buzzjourney
Hi App Engine Team, I wanted to add more info for this issue. My App is in Development. I am experiencing this issue when there is no load. (max 2 concurrent requests and I see there are 3 live instances). Over the past 24 hours I got this error for ~8% of the requests. This is not the first

Re: [appengine-java] Re: Request was aborted after waiting too long to attempt to service your request

2011-12-11 Thread cakowundu
@googlegroups.com Subject: [appengine-java] Re: Request was aborted after waiting too long to attempt to service your request Hi App Engine Team, I wanted to add more info for this issue. My App is in Development. I am experiencing this issue when there is no load. (max 2 concurrent requests and I see

[appengine-java] Re: Request was aborted after waiting too long to attempt to service your request.

2010-11-05 Thread Fred
I'm also experiencing this with two larger apps that use Guice and had the suspicion it appears due to Guice start-up time. On a smaller app that has only few bindings it does not seem to occur. Anyone sharing this experience? Cheers, Fred On Nov 4, 7:27 pm, James jamesk...@gmail.com wrote:

[appengine-java] Re: Request was aborted after waiting too long to attempt to service your request.

2010-11-04 Thread James
Someone correct me if any of this is inaccurate, but: - This occurs exactly 10s into a request. - They are not catchable; your code doesn't even start to spin up; there's nothing you can do about it. - Status page - http://code.google.com/status/appengine - usually shows all is fine when this

[appengine-java] Re: Request was aborted after waiting too long to attempt to service your request.

2010-11-04 Thread James
Also, pretty much EVERYONE who doesn't dislike reliability should be starring this issue - http://code.google.com/p/googleappengine/issues/detail?id=2396 :p On Nov 4, 1:25 pm, James jamesk...@gmail.com wrote: Someone correct me if any of this is inaccurate, but: - This occurs exactly 10s

[appengine-java] Re: Request was aborted after waiting too long to attempt to service your request.

2010-07-02 Thread Simon
It's a loading request - please read the FAQ on what causes it and how to minimise their occurrence at http://code.google.com/appengine/kb/java.html#What_Is_A_Loading_Request On Jul 2, 11:00 am, sree sraj...@gmail.com wrote: application id: su-raksha version: appengine-java-sdk-1.3.5

Re: [appengine-java] Re: Request was aborted after waiting too long to attempt to service your request.

2010-03-03 Thread Don Schwarz
Here's some good advice: http://googleappengine.blogspot.com/2009/12/request-performance-in-java.html On Tue, Mar 2, 2010 at 5:41 PM, Kroc vincent.legen...@gmail.com wrote: I have found I usually get this error when my app is loading and takes more than 10 seconds while another request

[appengine-java] Re: Request was aborted after waiting too long to attempt to service your request.

2010-03-02 Thread Kroc
Hello, I'm developping an App (fullmetalgalaxy.com) with GWT/AppEngine and I've got the same error in production server: “Request was aborted after waiting too long to attempt to service your request. Most likely, this indicates that you have reached your simultaneous dynamic request limit. This

Re: [appengine-java] Re: Request was aborted after waiting too long to attempt to service your request.

2010-03-02 Thread John Patterson
On 3 Mar 2010, at 00:22, Kroc wrote: Hello, I'm developping an App (fullmetalgalaxy.com) with GWT/AppEngine and I've got the same error in production server: “Request was aborted after waiting too long to attempt to service your request. Most likely, this indicates that you have reached your

[appengine-java] Re: Request was aborted after waiting too long to attempt to service your request.

2010-03-02 Thread Kroc
I have found I usually get this error when my app is loading and takes   more than 10 seconds while another request come in.  Does your app   take longer than 10 seconds to load? Hum yes it may be this... But I don't know how to measure the loading time and how to reduce it. If a remove some

[appengine-java] Re: Request was aborted after waiting too long to attempt to service your request.

2010-02-16 Thread sdr
I am also getting this error on a simple app that sends back hello world essentially. There does seem to be something strange going on because I'm the only one accessing the app, so it couldn't be simultaneous requests. Have you found anything around this? On Jan 22, 11:44 am, Locke

[appengine-java] Re: Request was aborted after waiting too long to attempt to service your request.

2010-01-22 Thread Locke
I have seen this error even for hello world. It MAY be caused by too many simultaneous requests, but it also may be caused by a problem with appengine itself. On Jan 22, 12:30 pm, Don Schwarz schwa...@google.com wrote: On Fri, Jan 22, 2010 at 10:55 AM, Millisecond millisec...@gmail.com wrote:

[appengine-java] Re: Request was aborted after waiting too long to attempt to service your request.

2010-01-22 Thread Millisecond
Ah, you're right, only this bit stuck in my head quotas with billing enabled can accommodate around 500 requests per second from http://code.google.com/appengine/docs/quotas.html Thanks for the pointer to the math working that number back from the 30 request / s limit. Seems a little optimistic