I am looking for a simple Job Control Framework to:
- Check up on the status of processes running on different machines
- The machines would be running a LINUX distribution
- The processes would be written in different languages, Java, Python, PHP, etc.
- The processes would be launched by hand and would check in with this framework to see if there is a job they can execute
- If there is such a job they will request that they (the processes) get ownership of such a job and execute it.
- The processes will check in at a required interval and update their status.
- A job requester (A human sitting on a CLI) could execute a request for a job (I want someone to honk)
- A job requester could poll the framework to see what is executing on this framework.
- A job requester could put in a kill request to shut down such a job
At it's simplest it could be something like a table in an RDBMS that has the following columns:
- Name of Process.
- Name of the physical Machine the Process is Running on.
- Status of Process.
- Time Running.
- Owner of Process.
- Last time the process Checked in.
This table would be wrapped in a simple REST based web service where the API would allow functions like:
- REPORT-STATUS -- this would essentially be a select
- REQUEST-KILL -- this would set the request flag of a row to say kill
- STATUS-UPDATE -- this would allow a process that is executing a the job to report in with statuses like (ALL-WELL, BLOCKED, etc.)
- etc.
I've looked at zookeeper and the like but I'm not sure if they solve this problem.
Thanks.