Skip to main content

Kedro-Airflow makes it easy to deploy Kedro projects to Airflow

Project description

Kedro-Airflow

License Python Version PyPI Version Code Style: Black

Apache Airflow is a tool for orchestrating complex workflows and data processing pipelines. The Kedro-Airflow plugin can be used for:

  • Rapid pipeline creation in the prototyping phase. You can write Python functions in Kedro without worrying about schedulers, daemons, services or having to recreate the Airflow DAG file.
  • Automatic dependency resolution in Kedro. This allows you to bypass Airflow's need to specify the order of your tasks.
  • Distributing Kedro tasks across many workers. You can also enable monitoring and scheduling of the tasks' runtimes.

Installation

kedro-airflow is a Python plugin. To install it:

pip install kedro-airflow

Usage

You can use kedro-airflow to deploy a Kedro pipeline as an Airflow DAG by following these steps:

Step 1: Generate the DAG file

At the root directory of the Kedro project, run:

kedro airflow create

This command will generate an Airflow DAG file located in the airflow_dags/ directory in your project. You can pass the --pipelines flag to generate the DAG file for a specific Kedro pipeline and the --env flag to generate the DAG file for a specific Kedro environment. Passing --all will convert all registered Kedro pipelines to Airflow DAGs.

Step 2: Copy the DAG file to the Airflow DAGs folder.

For more information about the DAGs folder, please visit Airflow documentation. The Airflow DAG configuration can be customized by editing this file.

Step 3: Package and install the Kedro pipeline in the Airflow executor's environment

After generating and deploying the DAG file, you will then need to package and install the Kedro pipeline into the Airflow executor's environment. Please visit the guide to Apache Airflow deployment for more details.

FAQ

What if my DAG file is in a different directory to my project folder?

By default, the generated DAG file is configured to live in the same directory as your project as per this template. If your DAG file is located in a different directory to your project, you will need to tweak this manually after running the kedro airflow create command.

What if I want to use a different Jinja2 template?

You can use the additional command line argument --jinja-file (alias -j) to provide an alternative path to a Jinja2 template. Note that these files have to accept the same variables as those used in the default Jinja2 template.

kedro airflow create --jinja-file=./custom/template.j2

How can I pass arguments to the Airflow DAGs dynamically?

kedro-airflow picks up configuration from airflow.yml in conf/base or conf/local of your Kedro project. Or it could be in a folder starting with airflow. The parameters are read by Kedro. Arguments can be specified globally, or per pipeline:

# Global parameters
default:
    start_date: [2023, 1, 1]
    max_active_runs: 3
    # https://airflow.apache.org/docs/stable/scheduler.html#dag-runs
    schedule_interval: "@once"
    catchup: false
    # Default settings applied to all tasks
    owner: "airflow"
    depends_on_past: false
    email_on_failure: false
    email_on_retry: false
    retries: 1
    retry_delay: 5

# Arguments specific to the pipeline (overrides the parameters above)
data_science:
    owner: "airflow-ds"

Arguments can also be passed via --params in the command line:

kedro airflow create --params "schedule_interval='@weekly'"

These variables are passed to the Jinja2 template that creates an Airflow DAG from your pipeline.

What if I want to use a configuration pattern other than airflow* and airflow**?

In order to configure the config loader, update the settings.py file in your Kedro project. For instance, if you would like to use the name scheduler, then change the file as follows:

CONFIG_LOADER_ARGS = {"config_patterns": {"airflow": ["scheduler*", "scheduler/**"]}}

Follow Kedro's official documentation, to see how to add templating, custom resolvers etc.

What if I want to pass different arguments?

In order to pass arguments other than those specified in the default template, simply pass a custom template (see: "What if I want to use a different Jinja2 template?")

The syntax for arguments is:

{{ argument_name }}

In order to make arguments optional, one can use:

{{ argument_name | default("default_value") }}

For examples, please have a look at the default template (airflow_dag_template.j2).

What if I want to use a configuration file other than airflow.yml?

The default configuration pattern is ["airflow*", "airflow/**"]. In order to configure the OmegaConfigLoader, update the settings.py file in your Kedro project as follows:

from kedro.config import OmegaConfigLoader

CONFIG_LOADER_CLASS = OmegaConfigLoader
CONFIG_LOADER_ARGS = {
    # other args
    "config_patterns": {  # configure the pattern for configuration files
        "airflow": ["airflow*", "airflow/**"]
    }
}

Follow Kedro's official documentation, to see how to add templating, custom resolvers etc. (https://docs.kedro.org/en/stable/configuration/advanced_configuration.html#how-to-do-templating-with-the-omegaconfigloader)[https://docs.kedro.org/en/stable/configuration/advanced_configuration.html#how-to-do-templating-with-the-omegaconfigloader]

How can I use Airflow runtime parameters?

It is possible to pass parameters when triggering an Airflow DAG from the user interface. In order to use this feature, create a custom template using the Params syntax. See "What if I want to use a different Jinja2 template?" for instructions on using custom templates.

What if I want to use a different Airflow Operator?

Which Airflow Operator to use depends on the environment your project is running in. You can set the operator to use by providing a custom template. See "What if I want to use a different Jinja2 template?" for instructions on using custom templates. The rich offering of operators means that the kedro-airflow plugin is providing templates for specific operators. The default template provided by kedro-airflow uses the TaskFlow API (@dag and @task decorators from airflow.sdk).

Can I group nodes together?

The --group-by option allows you to group Kedro nodes into single Airflow tasks. This is useful for reducing the overhead of task scheduling and for handling datasets that cannot be shared across distributed workers.

Grouping by memory

When running Kedro nodes using Airflow, MemoryDatasets are often not shared across operators, which can cause the DAG run to fail.

MemoryDatasets may be used to provide logical separation between nodes in Kedro, without the overhead of needing to write to disk (and in the case of distributed running, needing multiple executors).

Nodes that are connected through MemoryDatasets can be grouped together using the --group-by memory flag:

kedro airflow create --group-by memory

This preserves the option to have logical separation in Kedro, with little computational overhead. Nodes connected via MemoryDatasets will be combined into a single Airflow task.

Grouping by namespace

If your Kedro pipeline uses namespaces to organise nodes, you can group all nodes within the same namespace into a single Airflow task using the --group-by namespace flag:

kedro airflow create --group-by namespace

This is particularly useful when:

  • You have logically grouped nodes using namespaces and want to execute them together
  • You want to reduce the number of Airflow tasks while maintaining the namespace structure from your Kedro pipeline
  • Your namespaced nodes share intermediate data that doesn't need to be persisted between tasks

Nodes without a namespace will each be converted to individual Airflow tasks.

For more information about namespaces in Kedro, see the namespaces documentation.

Using task groups for visualisation

It is possible to use Airflow task groups by changing the template. See "What if I want to use a different Jinja2 template?" for instructions on using custom templates.

Migrating from Airflow 2.x

kedro-airflow 0.11.0 and above requires Apache Airflow 3.x (>=3.2.0). The default DAG template was rewritten to use the TaskFlow API and is not compatible with Airflow 2.x. If you need Airflow 2.x support, pin to kedro-airflow<0.11.0.

What changed in the generated DAG

The generated DAG no longer defines a KedroOperator class. Instead, a shared _run_kedro_node helper is defined once and each Kedro node group becomes a @task-decorated function that calls it:

# Airflow 3.x (new)
from airflow.sdk import dag, task

def _run_kedro_node(node_names=None, namespaces=None):
    configure_project(package_name)
    with KedroSession.create(project_path=project_path, env=env, conf_source=conf_source) as session:
        if namespaces is not None:
            session.run(pipeline_name=pipeline_name, namespaces=namespaces)
        else:
            session.run(pipeline_name=pipeline_name, node_names=node_names)

@dag(dag_id="my_project", schedule="@once", ...)
def my_project():
    @task(task_id="split")
    def split():
        _run_kedro_node(node_names=["split"])
    ...

my_project()

--pipeline renamed to --pipelines

The CLI flag --pipeline (-p) has been renamed to --pipelines. It now accepts a comma-separated list of pipeline names, so you can convert multiple pipelines in one invocation:

kedro airflow create --pipelines data_processing,data_science

Update any scripts or CI commands that use kedro airflow create --pipeline <name> to use --pipelines instead.

schedule_interval in airflow.yml

The schedule_interval config key in airflow.yml continues to work without any changes — it is mapped to the schedule parameter in the generated Python code automatically. You can also use schedule directly. No migration of your config files is needed.

Custom templates

If you maintain a custom Jinja2 template via --jinja-file that subclasses or references KedroOperator, you will need to rewrite it. The recommended approach is to define a _run_kedro_node helper and @task-decorated functions inside a @dag function, mirroring the new default template. All template variables passed by kedro airflow create (e.g. node_objs, dag_name, env) remain unchanged.

Can I contribute?

Yes! Want to help build Kedro-Airflow? Check out our guide to contributing.

What licence do you use?

Kedro-Airflow is licensed under the Apache 2.0 License.

Python version support policy

  • The Kedro-Airflow supports all Python versions that are actively maintained by the CPython core team. When a Python version reaches end of life, support for that version is dropped from kedro-airflow. This is not considered a breaking change.

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

kedro_airflow-0.11.0.tar.gz (19.8 kB view details)

Uploaded Source

Built Distribution

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

kedro_airflow-0.11.0-py3-none-any.whl (11.5 kB view details)

Uploaded Python 3

File details

Details for the file kedro_airflow-0.11.0.tar.gz.

File metadata

  • Download URL: kedro_airflow-0.11.0.tar.gz
  • Upload date:
  • Size: 19.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for kedro_airflow-0.11.0.tar.gz
Algorithm Hash digest
SHA256 d69c5b6273f2b54e199b0ba120ff50246218cf397395ceca6d36b191bf5f1a63
MD5 f738e3cefb306c529eb0bf3c24cbedf8
BLAKE2b-256 b91afbeef7724b5e8432a253d0c74bfbac79f91d8160bca6b9d2aeceabe9903c

See more details on using hashes here.

File details

Details for the file kedro_airflow-0.11.0-py3-none-any.whl.

File metadata

  • Download URL: kedro_airflow-0.11.0-py3-none-any.whl
  • Upload date:
  • Size: 11.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for kedro_airflow-0.11.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5efa08f7e4adb44697d21707472581d2f158a934b6e24db67c5346c32eddaf0a
MD5 678ebd9be9e967fef4ca628abdd0b724
BLAKE2b-256 ba1c9361fb1238686dc70568fa27ae5f7fbcd0762d5cffac94f729125b4f7821

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 Pingdom Monitoring Sentry Error logging StatusPage Status page