Reputation: 595
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
Upvotes: 1
Views: 7274
Reputation: 595
I found a solution from Airbnb: chronos
https://mesos.github.io/chronos/
Upvotes: 2
Reputation: 21
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
Upvotes: 2
Reputation: 2570
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.
Upvotes: 0