Problem with start date and scheduled date in Apache Airflow

Airflow schedules tasks at the end of the interval (See documentation reference) Meaning that when you do: start_date: datetime(2020, 12, 7, 8, 0,0) schedule_interval: ‘0 8 * * *’ The first run will kick in at 2020-12-08 at 08:00+- (depends on resources) This run’s execution_date will be: 2020-12-07 08:00 The next run will kick in … Read more