替代 cron 来安排作业
我需要安排作业,但我正在寻找可以通过以下规则调度任务的解决方案,例如:通过 rss feed 启动一个任务,我需要刷新,但在白天调度它。
我想象一个队列系统,我在其中发送要执行的命令的列表以及需要调度它们的时间段。
谢谢
I need to schedule jobs, but i'm looking for solution which can dispatch task by following rules like: launch one task by rss feed i need to refresh but dispatch it during the day.
I imagine a queue system where i send a list a command to execute and a time period where they need to be dispatch.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
首先我要说的是,我是这家公司的开发人员,所以我有点偏见。我们开发了一个名为 JAMS Job Scheduler 的解决方案,它是一个作业调度和批处理队列工具。 JAMS 允许您设置触发器和依赖项,并且还具有 Cron 和任务计划程序转换器。您可以在 www.JAMSScheduler.com 上查看
Let me start by saying I am a developer for this company so I am a bit biased. We make a solution called JAMS Job Scheduler which is a job scheduling and batch queue facility. JAMS allows you to set triggers and dependencies and also has Cron and Task Scheduler converters. You can check it out at www.JAMSScheduler.com
我从 Airbnb 找到了一个解决方案:chronos
https://mesos.github.io/chronos/
I found a solution from Airbnb: chronos
https://mesos.github.io/chronos/
我的公司制作了 CloudQuartz (www.thecloudblocks.com),它允许您通过 API 安排作业并在以下情况下获得回调他们该跑了。
My company makes CloudQuartz (www.thecloudblocks.com) which allows you to schedule the jobs through an API and get callbacks when they are due to run.