I'm using Airflow 1.10.12 and I have a DAG that run daily with the following parameters :
default_args = {
'start_date': days_ago(365),
'end_date': days_ago(1),
'depends_on_past': False,
}
When I run the dag, there will be 365 DAG runs.
It seems I can only see the active DAG runs. When I delete the current DAG runs, the following DAG runs are then triggered until I reach 365 DAG runs...
Is there a way I can stop the backfill ? (I mean delete all the DAG runs)
Have a nice day