https://github.com/cmpadden/airflow-dagster-examples
A compilation of common Airflow DAGs and their Dagster equivalent
https://github.com/cmpadden/airflow-dagster-examples
Last synced: 9 months ago
JSON representation
A compilation of common Airflow DAGs and their Dagster equivalent
- Host: GitHub
- URL: https://github.com/cmpadden/airflow-dagster-examples
- Owner: cmpadden
- Created: 2024-03-23T15:13:53.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-29T15:23:26.000Z (about 2 years ago)
- Last Synced: 2025-09-10T08:14:46.275Z (10 months ago)
- Language: Python
- Size: 9.59 MB
- Stars: 3
- Watchers: 4
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# airflow-dagster-examples
A compilation of common Airflow DAGs and their Dagster equivalent.
Airflow DAGs are pulled from the [Airflow DAGs repository](https://registry.astronomer.io/dags).
## To run
To run the Dagster examples, install Dagster and its UI:
```bash
pip install dagster dagster-webserver
```
Then cd into any of the directories and run:
```bash
dagster dev -f dagster_version.py
```
# STABLE
* `elt_example`
* `sensor`
* `dbt`
* `duckdb`
* `example_astronauts`
# WIP
* `list_files` -> why: it shows dynamic partitions really well
* `snowflake_data_quality` -> why: it shows asset checks really well
*