From d415364aada980592e0ebfb22a6acdf737be7c75 Mon Sep 17 00:00:00 2001 From: Ben Pankow Date: Fri, 23 Aug 2024 11:30:26 -0700 Subject: [PATCH] [dagster-airlift][tutorial-example] tweak new example readme (#23839) ## Summary & Motivation Tweak description of included DAGs. ## Changelog [New | Bug | Docs] > NOCHANGELOG --- .../examples/tutorial-example/README.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/examples/experimental/dagster-airlift/examples/tutorial-example/README.md b/examples/experimental/dagster-airlift/examples/tutorial-example/README.md index 6a5d787f8ca5c..17619fb07cb9b 100644 --- a/examples/experimental/dagster-airlift/examples/tutorial-example/README.md +++ b/examples/experimental/dagster-airlift/examples/tutorial-example/README.md @@ -11,15 +11,18 @@ Run the `dev_install` make command to install python dependencies. make dev_install ``` -Launch airflow, where we've loaded two dags: - -- `load_lakehouse`, which ingests a csv file into a duckdb table called `iris_table` -- `dbt_dag`, which loads a modified jaffle shop project, and has `iris_table` as a dbt source. +Launch airflow, where we've loaded the `rebuild_customers_list` DAG. ```bash make run_airflow ``` +This DAG consists of three seqeuential tasks: + +1. `load_raw_customers` loads a CSV file of raw customer data into duckdb. +2. `run_dbt_model` builds a series of dbt models (from [jaffle shop](https://github.com/dbt-labs/jaffle_shop_duckdb)) combining customer, order, and payment data. +3. `export_customers` exports a CSV representation of the final customer file from duckdb to disk. + In another shell, run `dagster dev`, where you should see the full dbt-airflow lineage show up. ```bash