Skip to main content

Custom cdk constructs for apache airflow

Project description

airflow-cdk

This project makes it simple to deploy airflow via ECS fargate using the aws cdk in Python.

It is meant for rapid prototyping, you will need to do some work to make it production-ready.

Usage

pip install airflow-cdk

from aws_cdk import core
from airflow_cdk.stack import FargateAirflow


app = core.App()

FargateAirflow(
    app,
    "airflow-cdk",
    postgres_password="replacethiswithasecretpassword")

app.synth()

cdk deploy

That's it.

Components

The following aws resources will be deployed as ecs tasks within the same cluster and vpc by default:

  • an airflow webserver task
    • and an internet-facing application load-balancer
  • an airflow scheduler task
  • an airflow worker task
    • (note) it will auto-scale based on cpu and memory usage up to a total of 16 instances at a time by default starting from 1
  • a rabbitmq broker
  • an rds instance
  • an s3 bucket for logs

TODOs

  • create a custom component to deploy airflow to an ec2 cluster as opposed to fargate
  • improve documentation
  • (possibly) subsume the airflow stable helm chart as a cdk8s chart
  • (possibly) a flower service

Contributions Welcome!

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_cdk-0.1.7.tar.gz (9.4 kB view hashes)

Uploaded Source

Built Distribution

airflow_cdk-0.1.7-py3-none-any.whl (9.8 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