Skip to main content

airflow-ha

High Availability (HA) DAG Utility

Build Status codecov License PyPI

Overview

This library provides an operator called HighAvailabilityOperator, which inherits from PythonSensor and runs a user-provided python_callable. The return value can trigger the following actions:

Return Result Current DAGrun End State
(PASS, RETRIGGER) Retrigger the same DAG to run again pass
(PASS, STOP) Finish the DAG, until its next scheduled run pass
(FAIL, RETRIGGER) Retrigger the same DAG to run again fail
(FAIL, STOP) Finish the DAG, until its next scheduled run fail
(*, CONTINUE) Continue to run the Sensor N/A

[!NOTE] Note: if the sensor times out, the behavior matches (Result.PASS, Action.RETRIGGER).

Limiters

Arguments to HighAvailabilityOperator can be used to configure finishing behavior outside of the callable:

  • runtime: A timedelta or int (seconds). The operator will turn off cleanly after dag.start_date + runtime ((PASS, STOP))
  • endtime: A time or str (isoformat time). The operator will turn off cleanly after today + endtime ((PASS, STOP))
  • maxretrigger: An integer. The operator will turn off after maxretrigger retriggers ((<previous status, STOP))

[!NOTE] These can be configured as arguments to HighAvailabilityOperator, and will be automatically included as DAG Params. This also allows them to be overridden by the DAG Config during a manual run. There is also a force-run option when running the DAG manually, which will cause the HighAvailabilityOperator to ignore the above 3 limiters.

Example - Always On

Consider the following DAG:

with DAG(
    dag_id="test-high-availability",
    description="Test HA Operator",
    schedule=timedelta(days=1),
    start_date=datetime(2024, 1, 1),
    catchup=False,
):
    ha = HighAvailabilityOperator(
        task_id="ha",
        timeout=30,
        poke_interval=5,
        python_callable=lambda **kwargs: choice(
            (
                (Result.PASS, Action.CONTINUE),
                (Result.PASS, Action.RETRIGGER),
                (Result.PASS, Action.STOP),
                (Result.FAIL, Action.CONTINUE),
                (Result.FAIL, Action.RETRIGGER),
                (Result.FAIL, Action.STOP),
            )
        ),
    )
    
    pre = PythonOperator(task_id="pre", python_callable=lambda **kwargs: "test")
    pre >> ha
    
    retrigger_fail = PythonOperator(task_id="retrigger_fail", python_callable=lambda **kwargs: "test")
    ha.retrigger_fail >> retrigger_fail

    stop_fail = PythonOperator(task_id="stop_fail", python_callable=lambda **kwargs: fail_, trigger_rule="all_failed")
    ha.stop_fail >> stop_fail
    
    retrigger_pass = PythonOperator(task_id="retrigger_pass", python_callable=lambda **kwargs: "test")
    ha.retrigger_pass >> retrigger_pass

    stop_pass = PythonOperator(task_id="stop_pass", python_callable=lambda **kwargs: "test")
    ha.stop_pass >> stop_pass

This produces a DAG with the following topology:

This DAG exhibits cool behavior. If the check returns CONTINUE, the DAG will continue to run the sensor. If the check returns RETRIGGER or the interval elapses, the DAG will re-trigger itself and finish. If the check returns STOP, the DAG will finish and not retrigger itself. If the check returns PASS, the current DAG run will end in a successful state. If the check returns FAIL, the current DAG run will end in a failed state.

This allows the one to build "always-on" DAGs without having individual long blocking tasks.

This library is used to build airflow-supervisor, which uses supervisor as a process-monitor while checking and restarting jobs via airflow-ha.

Example - Recursive

You can also use this library to build recursive DAGs - or "Cyclic DAGs", despite the oxymoronic name.

The following code makes a DAG that triggers itself with some decrementing counter, starting with value 3:

with DAG(
    dag_id="test-ha-counter",
    description="Test HA Countdown",
    schedule=timedelta(days=1),
    start_date=datetime(2024, 1, 1),
    catchup=False,
):
    
    def _get_count(**kwargs):
        # The default is 3
        return kwargs['dag_run'].conf.get('counter', 3) - 1

    get_count = PythonOperator(task_id="get-count", python_callable=_get_count)

    def _keep_counting(**kwargs):
        count = kwargs["task_instance"].xcom_pull(key="return_value", task_ids="get-count")
        return (Result.PASS, Action.RETRIGGER) if count > 0 else (Result.PASS, Action.STOP) if count == 0 else (Result.FAIL, Action.STOP)

    keep_counting = HighAvailabilityOperator(
        task_id="ha",
        timeout=30,
        poke_interval=5,
        python_callable=_keep_counting,
        pass_trigger_kwargs={"conf": '''{"counter": {{ ti.xcom_pull(key="return_value", task_ids="get-count") }}}'''},
    )

    get_count >> keep_counting

[!NOTE] This library is used by airflow-supervisor to build DAGs that manage supervisor processes with fault tolerance and automatic recovery.

[!IMPORTANT] AWS MWAA Users: AWS Managed Workflows for Apache Airflow (MWAA) imposes a 12-hour maximum DAG runtime limit. airflow-ha provides a clean solution by using the runtime limiter to automatically retrigger DAGs before they hit this limit, allowing you to run continuous workloads on MWAA.

License

This software is licensed under the Apache 2.0 license. See the LICENSE file for 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_ha-1.6.3.tar.gz (15.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

airflow_ha-1.6.3-py3-none-any.whl (16.6 kB view details)

Uploaded Python 3

File details

Details for the file airflow_ha-1.6.3.tar.gz.

File metadata

  • Download URL: airflow_ha-1.6.3.tar.gz
  • Upload date:
  • Size: 15.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for airflow_ha-1.6.3.tar.gz
Algorithm Hash digest
SHA256 ae1c129e2322035219d17aeea3c2c20aa0917cd62bd1d192c0c1dcb93a1db1f8
MD5 79ccc68410947230899e8e7c07090459
BLAKE2b-256 74ff72918a5e598a8d99778910d653982189afd61c5e9faf212f40805c645bd6

See more details on using hashes here.

File details

Details for the file airflow_ha-1.6.3-py3-none-any.whl.

File metadata

  • Download URL: airflow_ha-1.6.3-py3-none-any.whl
  • Upload date:
  • Size: 16.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for airflow_ha-1.6.3-py3-none-any.whl
Algorithm Hash digest
SHA256 704e60565850d047fc047a52f86e4194ff2cfa4a2b5129b93773665a74a534f5
MD5 ce16b5f428a630e56688a3a06ad27650
BLAKE2b-256 721e7a20cbcbde67f07752f041f25529996adb7863f75f7dbf28d23a07b652ca

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page