[appengine-java] Re: task queue limit >30 sec?

2009-11-03 Thread Vince Bonfanti
Here's one I got a few days ago. It looks like it timed-out while just queuing up a task: Uncaught exception from servlet com.google.apphosting.api.DeadlineExceededException: This request (8b0dab1ffe61eb3f) started at 2009/10/31 16:30:47.041 UTC and was still executing at 2009/10/31 16:31:16.438

[appengine-java] Re: task queue limit >30 sec?

2009-11-03 Thread Vince Bonfanti
Here's another one that's a bit older: Uncaught exception from servlet com.google.apphosting.api.ApiProxy$ApiDeadlineExceededException: The API call taskqueue.Add() took too long to respond and was cancelled. at com.google.apphosting.runtime.ApiProxyImpl.doSyncCall(ApiProxyImpl.java:109)

[appengine-java] Re: task queue limit >30 sec?

2009-11-03 Thread Jason (Google)
Hi Steve. Can you post the full stack trace of one of these exceptions? - Jason On Mon, Nov 2, 2009 at 4:30 AM, sproz wrote: > > Meanwhile, > > could anyone let me know why I get these DeadlineExceededException ? > > Thanks, > > Steve > www.sprosys.com > > On Oct 29, 9:55 pm, "Jason (Google)

[appengine-java] Re: task queue limit >30 sec?

2009-11-02 Thread sproooooz
Meanwhile, could anyone let me know why I get these DeadlineExceededException ? Thanks, Steve www.sprosys.com On Oct 29, 9:55 pm, "Jason (Google)" wrote: > We'll get these reflected in the documentation very soon. > > - Jason > > > > On Wed, Oct 28, 2009 at 12:49 PM, Toby Reyelts wrote: > >

[appengine-java] Re: task queue limit >30 sec?

2009-10-29 Thread Jason (Google)
We'll get these reflected in the documentation very soon. - Jason On Wed, Oct 28, 2009 at 12:49 PM, Toby Reyelts wrote: > The limits on tasks queues recently > changed. > For example, the new total limit is 100K task

[appengine-java] Re: task queue limit >30 sec?

2009-10-28 Thread Toby Reyelts
The limits on tasks queues recently changed. For example, the new total limit is 100K tasks/day for free apps and 1M default for billing enabled. On Wed, Oct 28, 2009 at 2:38 PM, Jason (Google) wrote: > All task queue

[appengine-java] Re: task queue limit >30 sec?

2009-10-28 Thread Jason (Google)
All task queue quotas and limits are listed at http://code.google.com/appengine/docs/java/taskqueue/overview.html#Quotas_and_Limits. Note that you can currently insert up to 10,000 tasks per day, although billed applications may have a higher upper limit. - Jason On Tue, Oct 27, 2009 at 12:21 PM,

[appengine-java] Re: task queue limit >30 sec?

2009-10-27 Thread James Cooper
Related question: Is there a limit to the number of pending tasks in a queue? Can you have a million items in there? thanks -- James On Oct 27, 12:07 pm, "Jason (Google)" wrote: > No, all individual tasks must complete in 30 seconds or less. For larger > jobs, such as processing millions of

[appengine-java] Re: task queue limit >30 sec?

2009-10-27 Thread Jason (Google)
No, all individual tasks must complete in 30 seconds or less. For larger jobs, such as processing millions of entities, the recommended approach is to split these jobs and run them as multiple tasks. At the end of the current task, you can determine if more work needs to be accomplished and dynamic