Airflow Dags
Airflow Contents Installation Dags What is DAG Directed Acyclic Graph (DAG)
Directed - If multiple tasks exist, each must have at least one defined upstream (previous) or downstream (subsequent) tasks, although they could easily have both. Acyclic - No task can create data that goes on to reference itself. This could cause an infinite loop that would be, um, it’d be bad. Don’t do that. Graph - All tasks are laid out in a clear structure with discrete processes occurring at set points and clear relationships made to other tasks.