Airflow does not backfill latest run

前端 未结 2 1072
南笙
南笙 2021-01-15 04:43

For some reason, Airflow doesn\'t seem to trigger the latest run for a dag with a weekly schedule interval.

Current Date:

$ date
$ Tue Aug  9 17:09:5         


        
2条回答
  •  臣服心动
    2021-01-15 04:57

    The similar issue happened to me as well. I solved it by manually run airflow backfill -s start_date -e end_date DAG_NAME where start_date and end_date covers the missing execution_date, in your case, 2016-08-08. For example, airflow backfill -s 2016-08-07 -e 2016-08-09 DAG_NAME

提交回复
热议问题