使用相同的作业 ID 调度不同的 crontimers
如何为同一工作安排不同的时间。
例如:我有一份工作(假设工作名称为 =“job1”),
job1 有差异计时器(20 * * * * ?
)和 (0 0/2 * * * ?
)
第一个计时器需要每 20 秒调度一次,第二个计时器需要每 2 分钟调度一次。
我的问题是最后一个计时器的调度。
how to schedule the different timings for same job.
For ex: I have a job(asssume job name is = "job1")
the job1 have diff timers(20 * * * * ?
) and (0 0/2 * * * ?
)
First timer need to schedule every 20 seconds and second timer need to schedule every 2 minutes.
My problem is the last timer only scheduling.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只能将其设置为 20 秒。这样,在第 6 次触发时,您将触发 2 分钟。或者这只是一个例子?
否则,据我所知,您将需要创建两个实例。
You could only set it to 20 seconds. This way, on the 6th trigger you would have the 2 minutes triggering. Or was that just an example ?
Otherwise, AFAIK, you would need to create two instances.