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, James Cooper <jamespcoo...@gmail.com>wrote:

>
> 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)" <apija...@google.com> wrote:
> > 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
> > dynamically add new tasks to the queue until the job is completely
> finished.
> >
> > - Jason
> >
> > On Sun, Oct 25, 2009 at 1:59 PM, sproooooz <stephane.spra...@gmail.com
> >wrote:
> >
> >
> >
> > > Is the limit duration of a task in a queue superior to 30 seconds?
> > > I receive a DeadlineExceededException all the time....
> >
>

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

Reply via email to