I am looking for a simple Job Control Framework to:

  1. Check up on the status of processes running on different machines
  2. The machines would be running a LINUX distribution
  3. The processes would be written in different languages, Java, Python, PHP, etc.
  4. The processes would be launched by hand and would check in with this framework to see if there is a job they can execute
  5. If there is such a job they will request that they (the processes) get ownership of such a job and execute it.
  6. The processes will check in at a required interval and update their status.
  7. A job requester (A human sitting on a CLI) could execute a request for a job (I want someone to honk)
  8. A job requester could poll the framework to see what is executing on this framework.
  9. 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:

  1. Name of Process.
  2. Name of the physical Machine the Process is Running on.
  3. Status of Process.
  4. Time Running.
  5. Owner of Process.
  6. 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:

  1. REPORT-STATUS -- this would essentially be a select
  2. REQUEST-KILL -- this would set the request flag of a row to say kill
  3. STATUS-UPDATE -- this would allow a process that is executing a the job to report in with statuses like (ALL-WELL, BLOCKED, etc.)
  4. etc.

I've looked at zookeeper and the like but I'm not sure if they solve this problem.

Thanks.

link|improve this question

0% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.