Chronos is airbnb's replacement for cron
.
It is a distributed and fault-tolerant scheduler which runs on top of mesos. You can use it to orchestrate jobs. It's a framework and supports custom
mesos executors as well as the default command executor. Thus by default, Chronos executes sh (on most systems bash) scripts.
Chronos can be used to interact with systems such as Hadoop (incl. EMR), even if the mesos slaves on which execution happens
do not have Hadoop installed. Included wrapper scripts allow transfering files and executing them on a remote machine in the background
and using asynchronous callbacks to notify Chronos of job completion or failures.
Chronos has a number of advantages over regular cron. It allows you to schedule your jobs using ISO8601 repeating interval notation, which enables more flexibility in job scheduling. Chronos also supports the definition of jobs triggered by the completion of other jobs. It supports arbitrarily long dependency chains.
For questions and discussions around Chronos, please use the Google Group "chronos-scheduler": Chronos Scheduler Group. Also join us on IRC in #mesos on freenode.
- Quick Start
- Features
- Running Chronos
- Configuring Chronos
- License
- Contributors
- Video Introduction
- Chronos UI
- API
- Debugging Chronos Jobs
- Notes
- Reporting Bugs
- Appendix
There is a file called 'installer.bash' that can be found in the bin directory of the repo. It will compile and install mesos and Chronos. After successful installation, a local version of Chronos with a built-in ZK server is started. You will need Maven 3.X, a JDK and build tools to get up and running. This is how you run this installer:
$./bin/installer.bash
If you get an error while compiling mesos, please consult the FAQ.
- Web UI
- 8601 Repeating Interval Notation
- Handles dependencies
- Job Stats (e.g. 50th, 75th, 95th and 99th percentile timing, failure/success)
- Fault Tolerance (Hot Master)
- Configurable Retries
- Multiple Workers (i.e. Mesos Slaves)
We've included some example run scripts, but the basic syntax for launching chronos is:
java -cp chronos.jar -server com.airbnb.scheduler.Main server config.yml
For more information on configuration options, please see configuring chronos.
-
Example runit run script
-
Example local run script
For information on configuring chronos, please see config/README.md.
The use and distribution terms for this software are covered by the Apache 2.0 License (http://www.apache.org/licenses/LICENSE-2.0.html) which can be found in the file LICENSE at the root of this distribution. By using this software in any fashion, you are agreeing to be bound by the terms of this license. You must not remove this notice, or any other, from this software.
- Replacing Cron & Building Scalable Data Pipelines: YouTube
Chronos comes with a UI which can be used to add, delete, list, modify and run jobs. It can also show a graph of job dependencies. The screenshot should give you a good idea of what Chronos can do.
You can communicate with Chronos using a RESTful JSON API over HTTP.
Chronos nodes usually listen on port 4400
for API requests.
All examples in this section assume that you've found a running leader at chronos-node.airbnb.com:4400
.
When you have multiple Chronos nodes running, only one of them will be elected as the leader. The leader is the only node that responds to API requests, but if you attempt to talk to a non-leader your request will automatically be redirected to a leader.
- Endpoint: /scheduler/jobs
- Method: GET
- Example:
curl -L -X GET chronos-node:4400/scheduler/jobs
- Response: JSON data
A job listing returns a JSON list containing all of the jobs. Each job is a JSON hash. Interesting fields in the hashes are:
invocationCount
: the number of times the job completedexecutor
: auto-determined by Chronos, but will usually be "" for non-async jobsparents
: for dependent jobs, a list of all other jobs that must run before this job will do so
If there is a parents
field there will be no schedule
field and vice-versa.
Get a job name from the job listing above. Then:
- Endpoint: /scheduler/job/jobName
- Method: DELETE
- Example:
curl -L -X DELETE chronos-node:4400/scheduler/job/request_event_counter_hourly
- Response: HTTP 204
Note: don't do this.
- Endpoint: /scheduler/jobs
- Method: DELETE
- Example:
curl -L -X DELETE chronos-node:4400/scheduler/jobs
- Response: HTTP 204
Deleting tasks for a job is useful if a job gets stuck. Get a job name from the job listing above. Then:
- Endpoint: /scheduler/task/kill/jobName
- Method: DELETE
- Example:
curl -L -X DELETE chronos-node:4400/scheduler/task/kill/request_event_counter_hourly
- Response: HTTP 204
You can manually start a job by issuing an HTTP request.
- Endpoint: /scheduler/job
- Method: PUT
- Example:
curl -L -X PUT chronos-node:4400/scheduler/job/request_event_counter_hourly
- Response: HTTP 204
The heart of job scheduling is a JSON POST request. The JSON hash you send to Chronos should contain the following fields:
- Name: the job name
- Command: the actual command that will be executed by Chronos
- Schedule: The scheduling for the job, in ISO8601 format. Consists of 3 parts separated by '/':
- Number of times to repeat the job; put just 'R' to repeat forever
- The start time of the job
- The run interval
- Epsilon: If Chronos misses the scheduled run time for any reason, it will still run the job if the time is within this interval.
- Owner: the email address of the person responsible for the job
- Async: whether the job runs in the background
Here is an example job hash:
{
"schedule": "R10/2012-10-01T05:52:00Z/PT2S",
"name": "SAMPLE_JOB1",
"epsilon": "PT15M",
"command": "echo 'FOO' >> /tmp/JOB1_OUT",
"owner": "bob@airbnb.com",
"async": false
}
Once you've generated the hash, send it to Chronos like so:
-
Endpoint: /scheduler/iso8601
-
Method: POST
-
Example:
curl -L -H 'Content-Type: application/json' -X POST -H 'Content-Type: application/json' -d '{json hash}' chronos-node:4400/scheduler/iso8601
-
Response: HTTP 204
A dependent job takes the same JSON format as a scheduled job.
However, instead of the schedule
field, it will accept a parents
field.
This should be a JSON list of all jobs which must run at least once before this job will run.
-
Endpoint: /scheduler/dependency
-
Method: POST
-
Example:
curl -L -X POST -H 'Content-Type: application/json' -d '{dependent hash}' chronos-node:4400/scheduler/iso8601
Here is a more elaborate example for a dependency job hash:
{
"async": true,
"command": "bash -x /srv/data-infra/jobs/hive_query.bash run_hive hostings-earnings-summary",
"epsilon": "PT30M",
"errorCount": 0,
"lastError": "",
"lastSuccess": "2013-03-15T13:02:14.243Z",
"name": "hostings_earnings_summary",
"owner": "bob@airbnb.com",
"parents": [
"db_export-airbed_hostings",
"db_export-airbed_reservation2s"
],
"retries": 2,
"successCount": 100
},
Chronos allows to describe the dependency graph and has an endpoint to return this graph in form of a dotfile.
- Endpoint: /scheduler/graph/dot
- Method: GET
- Example:
curl -L -X GET chronos-node:4400/scheduler/graph/dot
If your job is long-running, you may want to run it asynchronously. In this case, you need to do two things:
- When adding your job, ensure it is set as asynchronous.
- Your, job, when complete, should reports its completion status to Chronos.
If you forget to do (2), your job will never run again because Chronos will think that it is still running. Reporting job completion to Chronos is done via another API call:
- Endpoint: /scheduler/task/task id
- Method: PUT
- Example:
curl -L -X PUT -H "Content-Type: application/json" -d '{"statusCode":0}' chronos-node:4400/scheduler/task/my_job_run_555_882083xkj302
The task id is auto-generated by Chronos. It will be available in your job's environment as $mesos_task_id
.
Note: You will probably need to url-encode the mesos task id in order to submit it as part of the URL.
When specifying the command
field in your job hash, use the url-runner.bash
(make sure it's deployed on all slaves). Alternatively,
you can also use a url in the command field, if your mesos was compiled with cURL libraries.
Chronos itself can be configured just like dropwizard-logging via the configuration file. If there's something going wrong with the framework itself look here for information. Individual jobs log with their task id on the mesos slaves. Look in the standard out log for your job name and the string "ready for launch", or else "job ct:" and your job name. The job is done when the line in the log says:
Task with id 'value: TASK_ID **FINISHED**
To find debug logs on the mesos slave, look in /tmp/mesos/slaves
on the slave instance (unless you've specifically supplied a different log folder for mesos). For example:
/tmp/mesos/slaves/
In that dir, the current slave run is timestamped so look for the most recent. Under that is a list of frameworks; you're interested in the Chronos framework. For example:
/tmp/mesos/slaves/STAMP/frameworks/
The curl executor is even more powerful if the specified URLs are packaged and self-contained executables. This can be done for example via arx, which bundles code into an executable archive. Arx applications in turn contain shell commands and an archive (e.g. a jar file and a startup-script). It's easy to use and there are no libraries required to unpack and execute the archive.
Signed URLs can be used to publish arx files (e.g. on s3).
To start a new scheduler you have to give the JVM access to the native mesos library.
You can do so by either setting the java.library.path
to the build mesos library or create an environment variable MESOS_NATIVE_LIBRARY
and set it to the mesoslib.dylib
/ mesoslib.so
file
MESOS_NATIVE_LIBRARY
: Absolute path to the native mesos library. This is usually/usr/local/lib/libmesos.so
on Linux and/usr/local/lib/libmesos.dylib
on OSX.MESOS_LAUNCHER_DIR
: Absolute path to the src subdirectory of your mesos build, such that the shell executor can be found (e.g. If mesos was built in/Users/florian/airbnb_code/mesos/build
then the value for this variable would be/Users/florian/airbnb_code/mesos/build/src
).MESOS_KILLTREE
: Absolute path to the location of thekilltree.sh
script. (e.g./Users/florian/airbnb_code/mesos/src/scripts/killtree.sh
)
If you're using the installer script this should be setup for you.
To make all of our lives easier we ask that all bug reports include at least the following information:
The output of:
mvn -X clean package
and
java -version
If the error is in running tests, then please include the output of running all the tests.
# Mac/FreeBSD
tail +1 target/surefire-reports/*.txt
# GNU Coreutils
tail -n +1 target/surefire-reports/*.txt
If the error is in the installer, please include all the output from running it with debug enabled:
bash -x bin/installer.bash
If the bug is in building mesos from scratch, please submit those bugs directly to mesos.
If the bug occurs while running Chronos, please include the following information:
-
The command used to launch Chronos, for example:
java -cp target/chronos.jar com.airbnb.scheduler.Main server config/local_scheduler_nozk.yml
-
The YAML file used to configure Chronos.
-
The version of Mesos you are running.
-
The output of
java -version
As we mentioned, Chronos is designed (not required) to run with multiple nodes of which one is elected master.
If you use the cURL command line tool, you can use the -L
flag and hit any Chronos node and you will get a
307 REDIRECT to the leader.
Chronos registers itself with Zookeeper at the location /airbnb/service/chronos
. This value can be changed via the configuration file.
Follow these steps to install Chronos on Amazon Linux:
sudo apt-get install autoconf make gcc cpp patch python-dev git libtool default-jdk default-jdk-builddep default-jre gzip libghc-zlib-dev libcurl4-openssl-dev
sudo yum install autoconf make gcc gcc-c++ patch python-devel git libtool java-1.7.0-openjdk-devel zlib-devel libcurl-devel openssl-devel
Please note, some versions of OpenJDK 1.6 have a bug which prevents you from building chronos. If you encounter an error while building that seems to not stem from Chronos code but rather from some Scala classes, consider upgrading to OpenJDK 1.7.
git clone https://github.com/apache/mesos.git
cd mesos/
git checkout 0.12.x
export JAVA_HOME=/usr/lib/jvm/java-1.6.0-openjdk-1.6.0.0.x86_64/
./bootstrap
./configure --with-webui --with-included-zookeeper --disable-perftools
make
sudo make install
export MESOS_NATIVE_LIBRARY=/usr/local/lib/libmesos.so
git clone https://github.com/airbnb/chronos.git
cd chronos
mvn package
java -cp target/chronos*.jar com.airbnb.scheduler.Main server config/local_scheduler_nozk.yml