google app engine - Schedule 2 cron jobs -
how cron 2 tasks below (i want 2 cron jobs run in 30 seconds difference.)
cron: - description: task1 url: /task1 schedule: every 1 minutes 10:00 14:00 - description: task2 url: /task2 schedule: every 1 minutes 10:00:30 14:00:30
the cron jobs don't allow seconds specified. however, use the task class , set countdown amount on task2 equal 30 seconds.
i don't think timing guaranteed, should work approximately well.
Comments
Post a Comment