actually, my workaround doesnt work. :( So how can I schedule a job exactly every 1 minute?
I also tried running a super quick job every 1 minute that just schedules the longer job (the one that needs to run exactly every minute) on the task queue. Although nothing else is on this queue, the longer job sometimes just doesnt get executed for 40 seconds or so. :( Any other ideas? My new work around is that an external service just calls the longer job exactly every 1 minute via a http get. Not ideal either... -Andrin On Fri, Jul 29, 2011 at 6:24 PM, Andrin von Rechenberg <[email protected]>wrote: > Hi there > > I'm trying to run a job *exactly every 1 minutes.* > > My cron yaml contains this: > > *- description: Foo* > * url: /foo* > * schedule: every 1 minutes synchronized* > > > However, the job is only executed* every 2 minutes.* > * > * > My current work around is this: > > *- description: Foo_Even* > * url: /foo* > * schedule: every 2 minutes from 00:00 to 23:59* > *- description: Foo_Odd* > * url: /foo* > * schedule: every 2 minutes from 00:01 to 23:59* > > > But it's hacky IMHO. > > Has anyone seen similar problems? > > -Andrin > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
