In Airflow 2.x, for a DAG with a daily schedule, what does a DagRun's
logical_date represent?- aThe start of the data interval a DagRun covers, not when it runs✓
- bThe wall-clock time the scheduler actually started running the DagRun
- cThe timestamp when the DAG's last task instance finished
- dA random identifier Airflow assigns to the DagRun
Explanation:In Airflow 2.x,
logical_date marks the start of the data interval a DagRun covers, not the actual execution time — a daily DAG typically runs after the interval closes, not at its start.