TaskForest
A simple, expressive, open-source, text-file-based Job Scheduler with console, HTTP, and RESTful API interfaces.
About
  1. TaskForest - An Executive Summary
  2. A Quick Introduction to Job Schedulers
  3. TaskForest Design Philosophy
  4. Why Text Files are a Good Idea
  5. Comparing TaskForest to cron
  6. TaskForest Licensing and Pricing
  7. Commercial TaskForest Support
  8. System Requirements

A Quick Introduction to Job Scheduling

A Job Scheduler is an application that is responsible for scheduling and running programs (also known as jobs or tasks). The user specifies dependencies between jobs, and the job scheduler runs each job only after all its dependencies have been met. Dependencies may be the successful completion of another job (the prerequisite job), or a certain time of day, or ownership of a limited resource or token.

The job scheduler is also responsible for allowing the operator to rerun failed (or even successful) jobs, mark jobs as having succeeded or failed, and querying the status of all the jobs that are scheduled to run.

Collections of jobs that are dependent on each other are known as Families. Some schedulers call Families "Job Streams."