0

If a task is added to pull queue, how many days it will be in the pull queue? Is there any limit for task life time inside pull queue?

From google-app-engine docs, task can be leased up to maximum 1 week.

Does that apply for task life time too?

Naresh M
  • 113
  • 11

1 Answers1

1

In official documentation (https://developers.google.com/appengine/docs/java/taskqueue/overview-pull) seems that the limit is 30 days:

Maximum countdown/ETA for a task: 30 days from the current date and time

Davide
  • 123
  • 3
  • 8
  • Thanks for giving reply. I have seen before but not sure whether this applies or not. May be this could be as there is no other maximum time period for task in pull queue. – Naresh M Jun 11 '14 at 11:47