CanaryPy Airflow Plugin - Airflow Integration Plugin for CanaryPy
Project description
CanaryPy Airflow Plugin
This is a plugin for Apache Airflow that provides integration with CanaryPy. It modifies the task policies in Airflow, to send signals to CanaryPy on task success or failure. It also adds a custom Jinja template function that can be used to get the latest stable version of an artifact.
Requirements
- Python 3.8+
- Apache Airflow 2.0+
- CanaryPy Library
Installation
This plugin is available in Pypi so you can add to your Airflow installation by running the following command:
pip install canarypy_airflow_plugin
Alternatively, you can add the plugin to Airflow dependencies file.
Also disable lazy loading of plugins by setting lazy_load_plugins
to False
in your Airflow configuration file:
[core]
lazy_load_plugins = False
Configuration
The plugin uses the environment variable CANARYPY_URL
to set the base URL for CanaryPy. This environment variable must be set before the plugin is loaded by Airflow.
How It Works
The plugin patches the task_policy
function in Airflow's settings. If an existing task_policy
function exists, it is wrapped, so that the original policy is applied first, followed by the policy provided by this plugin.
The plugin's policy adds custom on_failure_callback
and on_success_callback
functions to the tasks. These functions send a signal to CanaryPy, containing information about the task's image, run ID, task ID, and state.
If a task is a MappedOperator
, the policy applies the custom callbacks via the partial_kwargs
attribute, to work around the fact that these operators do not have on_failure_callback
and on_success_callback
properties.
Finally, the plugin adds a get_latest_stable_version
function to the Jinja environment, which can be used in your DAGs. This function retrieves the latest stable version of an artifact from CanaryPy, given the artifact's URL.
Usage
With this plugin installed, your tasks in Airflow will automatically send signals to CanaryPy when they start, succeed or fail. This happens without needing any changes to your DAGs.
To use the get_latest_stable_version
function in a Jinja template, use the following syntax:
{{ get_latest_stable_version('artifact_url') }}
Contributing
We welcome contributions! Please feel free to submit a Pull Request.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file canarypy_airflow_plugin-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: canarypy_airflow_plugin-0.0.1-py3-none-any.whl
- Upload date:
- Size: 4.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f0ab39090d50c6cc8805cc7d23f21b72dc1ef828a1760b9f6b8c350974efd70b |
|
MD5 | 14f9c3320806af39caa9a15186d428e6 |
|
BLAKE2b-256 | 52a515c908ad22dc3c07975ac8b81a37d39db269fa19ddd1754a1f5db2473a09 |