[google-appengine] Re: TaskQueue API eta Question

2009-09-14 Thread Nick Johnson (Google)
Hi Paul, As far as I'm aware, there's no upper limit on the ETA you can set. -Nick Johnson On Sat, Sep 12, 2009 at 7:51 PM, Paul Kinlan paul.kin...@gmail.com wrote: Hi Guys, Just a quick question. Is there a maximum time that eta/countdown that I can use on Task, for instance can I set a

[google-appengine] Re: TaskQueue API eta Question

2009-09-14 Thread Paul Kinlan
Excellent, I potentially have a situation where it could be a task could be scheduled for a couple of months into the future and I am trying to work out if a cron poller would be more appropriate instead. Paul 2009/9/14 Nick Johnson (Google) nick.john...@google.com Hi Paul, As far as I'm

[google-appengine] Re: TaskQueue API eta Question

2009-09-14 Thread Benjamin Schuster-Böckler
As far as I understand, there IS an upper limit: maximum countdown/ETA for a task: 30 days from the current date and time from: http://code.google.com/appengine/docs/python/taskqueue/overview.html Best, Benjamin On 14 Sep 2009, at 12:38, Paul Kinlan wrote: Excellent, I potentially have a

[google-appengine] Re: TaskQueue API eta Question

2009-09-14 Thread pbs25
As far as I understand, there IS an upper limit: maximum countdown/ETA for a task: 30 days from the current date and time from: http://code.google.com/appengine/docs/python/taskqueue/overview.html Best, Benjamin On Sep 14, 12:38 pm, Paul Kinlan paul.kin...@gmail.com wrote: Excellent, I

[google-appengine] Re: TaskQueue API eta Question

2009-09-14 Thread Paul Kinlan
Thanks for the pointer. I have read that doc loads of times and I could swear that I have never seen it before :). In fact I must have skipped over it before I asked the question (wanted to check the doc before I asked :) Cron poller feeding into a queue is the solution it seems in this