Airflow DAG basics
A DAG defines tasks and dependencies so a workflow can run in the right order with retries and scheduling.
- Directed acyclic graph
- Tasks model units of work
- Scheduler triggers runs
Airflow DAG basics
Tagged with orchestration
A DAG defines tasks and dependencies so a workflow can run in the right order with retries and scheduling.
Airflow DAG basics
Orchestration decides when and in what order work runs; transformation changes the data itself.
Orchestration vs transformation
Retries help recover transient failures, while dependencies prevent downstream work from running on incomplete upstream data.
Retries and dependencies in pipelines