[google-appengine] Re: Need more info: Request was aborted after waiting too long...

2009-10-14 Thread dflorey

I can send many app-ids where this error started to appear. The
biggest problem is that these requests seem to be canceled without
retry. When getting TimeutExceptions I at least have a chance to do
something.


On 13 Okt., 22:18, Anders anders.ny...@gmail.com wrote:
 Same problem here. Never seen this error message before and now I am
 getting it all the time. First instance of the problem I see is at [12/
 Oct/2009:15:22 -0700] so that would be around the same time.

 /Anders

 On 13 Okt, 13:07, RollingCircle e.j.hard...@gmail.com wrote:



  Hi,

  I can't offer a solution, only to add that one of my apps has suddenly
  started reporting this error, but only in response to requests
  generated from a cron job - when running the same request directly, it
  completes without error.

  In my case, the app is 'metutil', python runtime, and this started
  happening between 21:00 UTC and 22:UTC 12-OCT-09, and is ongoing.

  Has there been some new prioritisation of cron and task-queue
  processing applied in the past 24 hours?

  Regards,

  Ed

  On Oct 13, 9:53 am, dflorey daniel.flo...@gmail.com wrote:

   Hi,
   I get this error from time to time on my application:

   Request was aborted after waiting too long to attempt to service your
   request. Most likely, this indicates that you have reached your
   simultaneous active request limit.

   I am using the task queue to run longer lasting tasks (checking the
   execution time and deferring it to new tasks). I get the message above
   even though I don't run multiple tasks at the same time.
   Can someone please elaborate a little bit what causes requests to be
   aborted?

   Thanks,
   Daniel
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Need more info: Request was aborted after waiting too long...

2009-10-14 Thread ramu

Yea, this error seems to have cropped up  A LOT since last 4-5
days  I didn't even change anything in my code but suddenly the
error rate with this message is 3% of the total taskqueue !
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Need more info: Request was aborted after waiting too long...

2009-10-14 Thread Picalolabu

Created a new issue for this problem. Please star it if you are
affected by it:

http://code.google.com/p/googleappengine/issues/detail?id=2266



On Oct 14, 2:48 pm, ramu rslet...@gmail.com wrote:
 Yea, this error seems to have cropped up  A LOT since last 4-5
 days  I didn't even change anything in my code but suddenly the
 error rate with this message is 3% of the total taskqueue !
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Need more info: Request was aborted after waiting too long...

2009-10-14 Thread Jon McAlister

There was an issue with 1.2.6 in that it throughput on task queue requests was
getting unfairly throttled. This has now been fixed. Apologies for the bug and
for the confusion.


On Wed, Oct 14, 2009 at 12:51 PM, Picalolabu
manuel.martin.agui...@gmail.com wrote:

 Created a new issue for this problem. Please star it if you are
 affected by it:

 http://code.google.com/p/googleappengine/issues/detail?id=2266



 On Oct 14, 2:48 pm, ramu rslet...@gmail.com wrote:
 Yea, this error seems to have cropped up  A LOT since last 4-5
 days  I didn't even change anything in my code but suddenly the
 error rate with this message is 3% of the total taskqueue !
 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Need more info: Request was aborted after waiting too long...

2009-10-13 Thread GAEfan

I have the same errors.  Seems they started when I added taskqueue and
cron jobs.  If I have 20 cron jobs trying to act simultaneously, would
that trigger this error?  If so, how can I stagger them?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Need more info: Request was aborted after waiting too long...

2009-10-13 Thread RollingCircle

Hi,

I can't offer a solution, only to add that one of my apps has suddenly
started reporting this error, but only in response to requests
generated from a cron job - when running the same request directly, it
completes without error.

In my case, the app is 'metutil', python runtime, and this started
happening between 21:00 UTC and 22:UTC 12-OCT-09, and is ongoing.

Has there been some new prioritisation of cron and task-queue
processing applied in the past 24 hours?

Regards,

Ed

On Oct 13, 9:53 am, dflorey daniel.flo...@gmail.com wrote:
 Hi,
 I get this error from time to time on my application:

 Request was aborted after waiting too long to attempt to service your
 request. Most likely, this indicates that you have reached your
 simultaneous active request limit.

 I am using the task queue to run longer lasting tasks (checking the
 execution time and deferring it to new tasks). I get the message above
 even though I don't run multiple tasks at the same time.
 Can someone please elaborate a little bit what causes requests to be
 aborted?

 Thanks,
 Daniel

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---