使用 Quartz 获取集群中当前正在执行的所有作业的列表
quartz 中的 Scheduler.getCurrentlyExecutingJobs() 方法显然不支持集群。 人们使用什么方法来获取所有正在执行的作业的列表?
The method Scheduler.getCurrentlyExecutingJobs() in quartz apparently is not cluster aware. What method are people using to get a list of all executing jobs?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看起来调度机制的彻底改革不会很快发生。
因此,以下是我直接检查表格的方法 - 如果需要,可以添加组支持:
Looks like overhauling the scheduling mechanism isn't happening anytime soon.
So, here's how I'm checking the table directly - add group support if you want it:
我假设一种方法是直接访问数据库,尽管它有点冒险,因为 API 完全处理了这个问题。
为此,他们的 Jira 中存在一个问题。 他们的结论是,如果他们想要满足集群感知的需求,则需要彻底改革调度机制。
您可以参考http://jira.opensymphony.com/browse/QUARTZ-372
I would assume one way is to access the database directly, although its a bit risky since the API completely handles that.
There is an issue in their Jira for this purpose. Their conclusion is you need to overhaul the scheduling mechanism if they want to cater cluster aware.
You can refer to http://jira.opensymphony.com/browse/QUARTZ-372