An open API service indexing awesome lists of open source software.

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

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
*