1

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

3 Answers3

2

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

Harry
  • 21
  • 2
2

I found a solution from Airbnb: chronos

https://mesos.github.io/chronos/

bfontaine
  • 18,169
  • 13
  • 73
  • 107
0

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.

Khash
  • 2,500
  • 4
  • 30
  • 56