Is there standard software for scheduling tasks?
At work we are tasked with implementing a scheduling system. Our current requirements call for us to schedule 2 types of tasks:
The tasks themselves will all be command-line applications + parameters that need to be executed.
Up until this point, we have implemented repeating tasks using cron
, but this is not sufficient in the long term, since we want to be robust:
CRUD
API for managing jobs. Is there an industry standard tool for implementing this? When we want to store data we use a database, when we want to queue items we use a queue – what's the equivalent for scheduling tasks?
ATrigger can solve all your mentioned requirements. monitoring , analytics and exception handling and API. .Net, Php, Ruby libraries are available, also REST-API for all others.
Disclaimer : I was among people who made this tool. It is a freeware, not commercial purpose.
链接地址: http://www.djcxy.com/p/38890.html上一篇: C#计划任务系列
下一篇: 是否有计划任务的标准软件?