我如何使用 Azure Web 作业每 5 分钟在 04:00 和 21:00 之间安排作业
How can i schedule a job between 04:00 and 21:00 on every 5 minutes with Azure Web Job
我需要在 Azure 上安排工作。
我需要每 5 分钟在 04:00 和 21:00 之间安排作业。
我尝试了下面的 cron 表达式,但没有用。
0 */5 4-21 * * *
我该怎么做?
I need to schedule a job on Azure. I need to schedule the job between
04:00 and 21:00 every 5 minutes.
要做到这一点,其中一种解决方法可以解决上述问题,
如果您想使用 cron 表达式 到 运行 04:00- [之间每 5 分钟=30=] ,你可以在你的 json 中使用如下:
{"schedule": "0,05 4-21 * * *"}
更多信息请参考Blog post & .
我需要在 Azure 上安排工作。 我需要每 5 分钟在 04:00 和 21:00 之间安排作业。
我尝试了下面的 cron 表达式,但没有用。
0 */5 4-21 * * *
我该怎么做?
I need to schedule a job on Azure. I need to schedule the job between 04:00 and 21:00 every 5 minutes.
要做到这一点,其中一种解决方法可以解决上述问题,
如果您想使用 cron 表达式 到 运行 04:00- [之间每 5 分钟=30=] ,你可以在你的 json 中使用如下:
{"schedule": "0,05 4-21 * * *"}
更多信息请参考Blog post &