Render 3rd party workflows in Airflow
Project description
Astronomer Cosmos
A framework for dynamically generating Apache Airflow DAGs from other tools and frameworks. Develop your workflow in your tool of choice and render it in Airflow as a DAG or Task Group!
- Current support for:
dbt
- Coming soon:
Jupyter
Hex
And more…open an issue if you have a request!
Quickstart
Check out the Quickstart guide on our docs.
Example Usage (dbt)
Cosmos lets you render dbt projects as Airflow DAGs and Task Groups. To render a DAG, import DbtDag and point it to your dbt project.
from pendulum import datetime
from airflow import DAG
from cosmos.providers.dbt.dag import DbtDag
# dag for the project jaffle_shop
jaffle_shop = DbtDag(
dbt_project_name="jaffle_shop",
conn_id="airflow_db",
dbt_args={
"schema": "public",
},
dag_id="jaffle_shop",
start_date=datetime(2022, 11, 27),
)
Simiarly, you can render an Airflow TaskGroups using the DbtTaskGroup class. Here’s an example with the jaffle_shop project:
from pendulum import datetime
from airflow import DAG
from airflow.operators.empty import EmptyOperator
from cosmos.providers.dbt.task_group import DbtTaskGroup
with DAG(
dag_id="extract_dag",
start_date=datetime(2022, 11, 27),
schedule="@daily",
) as dag:
e1 = EmptyOperator(task_id="ingestion_workflow")
dbt_tg = DbtTaskGroup(
group_id="dbt_tg",
dbt_project_name="jaffle_shop",
conn_id="airflow_db",
dbt_args={
"schema": "public",
},
dag=dag,
)
e2 = EmptyOperator(task_id="some_extraction")
e1 >> dbt_tg >> e2
Changelog
We follow Semantic Versioning for releases. Check CHANGELOG.rst for the latest changes.
Contributing Guide
All contributions, bug reports, bug fixes, documentation improvements, enhancements are welcome.
A detailed overview an how to contribute can be found in the Contributing Guide.
As contributors and maintainers to this project, you are expected to abide by the Contributor Code of Conduct.
License
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 Distribution
Built Distribution
File details
Details for the file astronomer_cosmos-0.4.0.tar.gz
.
File metadata
- Download URL: astronomer_cosmos-0.4.0.tar.gz
- Upload date:
- Size: 19.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 07e68f0e9aa6ef4f4e22822c0526b3ecf85df0b1abece97f3be9aa8b5f96db51 |
|
MD5 | dc20ff2c63e26099339ea9bffc0f6107 |
|
BLAKE2b-256 | 7647f29b7e15e17009cbb2749bc6f4778cc804cd59b754041961549b9f50338c |
File details
Details for the file astronomer_cosmos-0.4.0-py3-none-any.whl
.
File metadata
- Download URL: astronomer_cosmos-0.4.0-py3-none-any.whl
- Upload date:
- Size: 25.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3e8982a9cfd0958d2271b2fd571ad8c16d074003d90470f7755d23da431eded8 |
|
MD5 | c3f45d5a884614ec3b02aab6b05cbc3e |
|
BLAKE2b-256 | 7b0fc53d089be7a99c8c627ee1377ec9519f8b57584af1397c31702e833cfe01 |