Skip to main content

Supervisor operators and configuration for long-running tasks

Project description

airflow-supervisor

Apache Airflow utilities for running long-running or always-on jobs with supervisord

Build Status codecov License PyPI

Overview

This library provides a configuration-driven way of generating supervisor configurations and airflow operators/sensors for long-running or always-on jobs. Configuration is managed by Pydantic, Hydra, and OmegaConf.

How To: Use in Airflow

airflow-supervisor can be installed in your airflow server environment and imported in your dag files. It provides two convenient top level DAG subclasses:

  • SupervisorLocal: creates a DAG representing a local supervisor instance running on the airflow worker node (underlying task will use PythonOperator and BashOperator to communicate between airflow and supervisor)
  • SupervisorRemote: creates a DAG representing a remote supervisor instance running on another machine (underlying tasks will use SSHOperator to communicate between airflow and supervisor)

We expose DAGs composed of a variety of tasks and sensors, which are exposed as a discrete pipeline of steps:

  1. Setup supervisord configuration
  2. Start the supervisord daemon
  3. Start the supervised programs with supervisorctl
  4. Start sensors to query the programs' state via supervisor's XML-RPC API
  5. Evaluate and take action according to the program's state changes
  6. Restart programs if necessary
  7. Tear down the sensors from (4)
  8. Stop the supervised programs from (3)
  9. Stop the supervisord daemon from (2)
  10. Remove configuration from (1)

This setup provides maximal configureability with a minimal requirements on the machine (for example, no requirements on an existing supervisord daemon via e.g. systemd). It also lets you hook your own tasks into any step of the process. For example, if we detect a process has died in step (5), you could configure your own task to take some custom action before/instead of the default restart of step 6.

Here is a nice overview of the DAG, with annotations for code paths and the actions taken by Supervisor:

More docs and code examples coming soon!

How To: Use as a supervisord configuration frontend

This library can be used outside airflow as a generic supervisord configuration framework, with the static typing benefits that entails. For an example, look at the hydra configuration test. This example generates a supervisor configuration file by composing independent hydra configs.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

airflow_supervisor-0.2.0.tar.gz (31.8 kB view hashes)

Uploaded Source

Built Distribution

airflow_supervisor-0.2.0-py3-none-any.whl (55.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page