Introducing Factotum Server
We are pleased to announce the release of Factotum Server, a new open-source system for scheduling and executing Factotum jobs.
In previous posts, we have talked about how our pipeline orchestration journey started with cron
and make
, before moving on to release Factotum. Initially, the only way to interact with Factotum has been through the CLI, but now we have Factotum Server.
Where Factotum fills the gap of our previous make-based solution, Factotum Server replaces much of our Cron usage in a form that is accessible via HTTP requests. We hope that the Factotum jobserver is useful to the wider job-running community – read on to find out more.
- Why Factotum Server?
- Job server as web service
- Factotum Server 0.1.0
- Downloading and running Factotum Server
- Submitting a job to Factotum
- Roadmap
- Contributing
1. Why Factotum Server?
Factotum Server is an extension to the existing Factotum project, and broadens the scope of what is possible with Factotum. The job server started off as an internal project written in Golang as we found ourselves needing to run Factotum factfiles outside of regular Cron scheduling, for example:
- Manually kicking off ad hoc runs of regularly scheduled jobs
- Manually resuming failed scheduled jobs from partway through the DAG
We did not undertake building YAJS (Yet Another Job Server) lightly! But we had some key requirements:
First class support for Factotum
It was important that the job server be 100% compatible with the job running behaviour of Factotum CLI and specifically Factotum’s factfile format.
Support for clustering
We are running Factotum CLI on many servers in our orchestration cluster. It was important that our job server could also be distributed across multiple boxes, which meant building in support for our preferred HA distributed system to share state: Consul from HashiCorp.
Webhook all the things
The webhook-first approach we took with Factotum has worked out great: we ingest the webhooks natively into our internal Snowplow pipeline and use this for all sorts of DAG monitoring and visualisation. It removes a ton of complexity from the core of Factotum and allows us to monitor and visualise DAGs in a much more Snowplow-idiomatic way. It’s important that our job server speaks the same webhooks.
2. Job server as web service
What kind of interface should we use for Factotum Server? We had some design goals we wanted to fulfil:
Abstraction
We don’t want to care which box a given job is running on – we just want the job to run and for the job server to keep track of jobs submitted. We want the job server to be easily distributed behind a load balancer.
Simple job requests
We want running Factotum jobs on-demand to be simple and explicit. A RESTful-inspired HTTP interface makes it easy to run jobs from a shell, and to integrate job-running into GUIs and ChatOps.
From this it was clear that we needed to build the Factotum Server as an HTTP service.
3. Factotum Server 0.1.0
Factotum Server, like Factotum, is written in Rust. Version 0.1.0 is mostly a port of our internal Golang project to Rust, with certain Snowplow-isms removed.
The main action is submitting new job requests for Factotum, sent via the /submit
HTTP endpoint, which is described in the example below.
Factotum jobs are executed using the CLI for Factotum, which needs to be available on the same box that the server is running on. This along with Consul (see below) are Factotum’s only operational dependencies.
We have adopted a “worker queue” model for scheduling:
- New requests are appended to a queue of job requests and the next available worker is notified to check the queue
- The worker processes the job by executing Factotum in a separate thread, allowing multiple workers to process jobs concurrently
- The worker will record the outcome on completion and check the queue again for any further requests
Consul is used as our distributed state storage where entries are created for each unique job, and the job ID is generated in the same way as Factotum’s job reference. Each entry persists:
- The job status
QUEUED
,WORKING
, orDONE
- The job request JSON
- The server ID the job was last run from
- The outcome of the last run
WAITING
,RUNNING
,SUCCEEDED
, orFAILED
More information, including the other available API commands, can be found in our docs on the wiki.
Factotum Server is currently built for Linux/x86_64
and Darwin/x86_64
. As Factotum becomes available on other platforms, the server should also become available there.
4. Downloading and running Factotum Server
Assuming you are running 64 bit Linux:
You can then run Factotum Server in the following way:
This starts up Factotum Server with preset defaults, ready to execute job requests using the Factotum binary at the --factotum-bin
path.
Factotum Setup
If Factotum is not already available:
These commands will download the 0.4.1 Factotum release, unzip it in your current working directory, and download a sample
job for you to run.
See the wiki for further guides and information.
Consul Setup
Installing Consul is out of scope of this blog post – however HashiCorp has a getting started guide for Consul.
5. Submitting a job to Factotum
Assuming that the steps above have been followed, you now have Factotum Server running with a copy of the Factotum binary, along with Consul and an example factfile.
To submit a job, all you need to do is POST the following JSON to http://localhost:3000/submit
:
If you have run Factotum commands before, you will notice that the JSON looks very similar to the arguments passed to the Factotum CLI.
jobName
is an internal reference used within the server as the name of the request being sent (not to be confused with the server generated job reference)factfilePath
specifies the location of the factfile to run. Currently only local filepaths are supported, so you will need to use rsync, ansible-pull or similar to ensure that the factfile is available on all instances running Factotum ServerfactfileArgs
is an array containing the additional options passed to the CLI for running the factfile
Check out the samples for more sample factfiles or the wiki for more information.
6. Roadmap for Factotum Server
We are taking an iterative approach with Factotum Server – today it can schedule and execute Factotum jobs, but in the future it will be able to recover from job failures and resume incomplete jobs.
An important future change is to remove the server’s current dependency on the Factotum CLI. Once the Factotum logic is separated into a common library, this can be used directly instead, and Factotum Server will not have to shell out to Factotum CLI to actually run jobs.
Although it’s not a high-priority internal requirement, we would welcome a contribution of a local storage option as a single-server alternative to Consul. Please see the ticket, Add support for RocksDB for state storage #4, if you would like to help out here.
If you have specific features you would like to suggest, please add a ticket to the GitHub repo.
7. Contributing
As with Factotum, Factotum Server is completely open source. If you would like to get involved, or just try your hand at Rust, please check out the repository.