Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们正在使用石英调度程序进行调度,我有一个要求,我需要每 2.5 小时执行一次作业。请为此构建一个 cron 表达式。提前致谢。
这意味着您必须在以下时间执行脚本 0.00, 2.30,5.00,7.30,10.00,12.30,15.00,17.30,20.00,22.30 我不确定您是否可以在单个 cron 命令中编写此脚本。您可以按照以下步骤操作。 你可以把它分成两半。0.00,5.00,10.00,15.00,20.00 和 2.30,7.30,12.30,17.30,22.30 可以在 cron 中添加 2 个条目 0 */5 * * * CMD 和 30 2,7,12,17,22 * * * CMD
希望这可以帮助你..