I can start one job my-task-name
on chronos manually via its rest api:
http PUT http://my-chronos/scheduler/job/my-task-name
HTTP/1.1 204 No Content
Connection: keep-alive
Content-Type: application/json
Date: Mon, 28 Nov 2016 09:40:55 GMT
Server: openresty/1.7.10.2
yet I have a list of jobs I want to execute manually and I don't want to fire a PUT request for each one of them. Is it possible to execute a batch of task via one request on chronos? Or do I have start each job with its own request?
There are a couple of ways to handle this depending on what you are trying to accomplish.