如何在 Quartz 中排队失败的作业?
How to queue misfired jobs in Quartz?
有没有办法在 quartz 调度程序中对数千个失败的作业进行排队?
我想避免所有失败的工作一次全部解雇。
我们正在使用 quartz 2.2.1。
只限制并发执行作业的数量。
例如设置 属性 org.quartz.threadPool.threadCount to 10 will cause that only 10 jobs could be executed in parallel. I.e. other jobs will be queued (depending on your MisfireInstructions).
有没有办法在 quartz 调度程序中对数千个失败的作业进行排队?
我想避免所有失败的工作一次全部解雇。
我们正在使用 quartz 2.2.1。
只限制并发执行作业的数量。
例如设置 属性 org.quartz.threadPool.threadCount to 10 will cause that only 10 jobs could be executed in parallel. I.e. other jobs will be queued (depending on your MisfireInstructions).