App Engine cron 计划在工作日 运行
App Engine cron schedule to run on weekdays
我想在 App Engine 上每 5 分钟 运行 执行一次 cron,但仅限工作日。
cron:
- description: run
url: /cron/run
schedule: */5 * * * 1-5
它给出错误:
expected alphabetic or numeric character, but found '/'
仅使用 cron 是不可能的。如果您想要节省实例小时数,则可以改为在每天午夜将时间安排到 运行。它检查它是否是工作日,如果是,它 运行 是一个任务队列。任务队列提前 5 分钟启动另一个任务队列,并执行其工作。任务队列在日期更改后立即停止。
因为我来这里是为了了解如何 运行 在工作日的特定时间进行 cron,
schedule: every mon,tue,wed,thu,fri 7:00
这对我有用,但如果您想同时指定日期和时间段,则必须使用 Zig Mandel 的解决方案。希望能帮助到你。
我想在 App Engine 上每 5 分钟 运行 执行一次 cron,但仅限工作日。
cron:
- description: run
url: /cron/run
schedule: */5 * * * 1-5
它给出错误:
expected alphabetic or numeric character, but found '/'
仅使用 cron 是不可能的。如果您想要节省实例小时数,则可以改为在每天午夜将时间安排到 运行。它检查它是否是工作日,如果是,它 运行 是一个任务队列。任务队列提前 5 分钟启动另一个任务队列,并执行其工作。任务队列在日期更改后立即停止。
因为我来这里是为了了解如何 运行 在工作日的特定时间进行 cron,
schedule: every mon,tue,wed,thu,fri 7:00
这对我有用,但如果您想同时指定日期和时间段,则必须使用 Zig Mandel 的解决方案。希望能帮助到你。