I have a set of DAGs that have run from 2011-01-01
to 2018-04-01
on a @monthly
schedule. I've done this by setting the start_date
and end_date
on each of the dags. However, I've now realized I need it to run for one more month. I've updated the end_date
to be 2018-05-01
, however updating this value has not triggered Airflow start another DagRun.
I've read Airflow: changing the crontab time for a DAG in Airflow, but I do not want to change the Dag id because that would cause me to have to re-run all the months and I just want to add one additional month. Is this possible in Airflow?