Building Data Pipelines with Airflow
Volker Janz
Senior Developer Advocate at Astronomer
$ airflow dags trigger <dag_id>
$ airflow dags list-runs <dag_id>
$ airflow backfill create --dag-id <dag_id> ...
$ airflow dags trigger daily_sales_load --logical-date 2026-04-20
dag_id | logical_date | run_id
daily_sales_load | 2026-04-20T00:00:00+00:00 | manual__2026-...
--logical-date flag sets which date the run processesrun_id starts with manual__$ airflow dags list-runs daily_sales_load
run_id | state | logical_date
scheduled__2026-04-23T00:00:00 | success | 2026-04-23T00:00:00
manual__2026-04-20T00:00:00 | success | 2026-04-20T00:00:00
run_id prefix tells you how the run was createdscheduled__ = created by the schedulermanual__ = created by trigger command or UI$ airflow backfill create \
--dag-id daily_sales_load \
--from-date 2026-04-20 \
--to-date 2026-04-22 \
--max-active-runs 1
--max-active-runs controls concurrencybackfill__
scheduled__: created automatically by the schedulermanual__: created by the trigger command or UI buttonbackfill__: created by the backfill command for historical datesrun_id always tells you which one it is
Astro CLI
$$
Astro IDE

Run
Observe

Building Data Pipelines with Airflow