本文介绍了将 cron 作业配置为每 15 分钟在 Jenkins 上运行一次的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在 Jenkins 上每 15 分钟运行一次 cron 作业?
How can I run a cron job every 15 mins on Jenkins?
这是我试过的:
在 Jenkins 上,我有一个作业设置为使用此 cron 语法每 15 分钟运行一次:
On Jenkins I have a job set to run every 15 mins using this cron syntax :
14 * * * *
但该作业每小时执行一次,而不是 15 分钟.
But the job executes every hour instead of 15 mins.
我收到有关 cron 语法格式的警告:
I'm receiving a warning about the format of the cron syntax :
Spread load evenly by using ‘H * * * *’ rather than ‘14 * * * *’
这可能是 cron 作业每小时执行一次而不是 15 分钟的原因吗?
Could this be the reason why the cron job executes every hour instead of 15 mins ?
推荐答案
你的语法有点错误.说:
Your syntax is slightly wrong. Say:
*/15 * * * * command
|
|--> `*/15` would imply every 15 minutes.
*
表示 cron 表达式匹配字段的所有值.
*
indicates that the cron expression matches for all values of the field.
/
描述范围的增量.
这篇关于将 cron 作业配置为每 15 分钟在 Jenkins 上运行一次的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!