在Google App Engine中,我想在10分钟内每小时安排一项任务。我的意思是,每天00:10,01:10,02:10,... 22:10和23:10:每时每刻+十分钟。 Crontab等价物就像
10 * * * * mytask
我应该在我的cron.yaml
写一下
cron:
- description: do something
url: /myscript
schedule: (?)
P.S。季节的问候,每个人!
答案 0 :(得分:10)
cron:
- description: do something
url: /myscript
schedule: every 1 hours from 00:10 to 23:10
来自Google App Engine Documentation:
默认情况下,间隔计划开始后的下一个间隔 上一份工作已经完成。但是,如果指定了from ... to子句, 这些工作定期安排,与时间无关 上一份工作完成了
因此,它将在00:10,01:10等等运行