I want to modify the schedule of a task I created in a dags/ folder through the airflow UI. I can't find a way to modify the schedule through the UI. Can it be done or we can get it done only by modifying the python script ?
Asked
Active
Viewed 1,588 times
1 Answers
2
The only way to change it is through the code. As it's part of the DAG definition (like tasks and dependencies), it appears to be difficult to be able to change it through the web interface.

Antoine Augusti
- 1,598
- 11
- 13
-
2Do we still need to **rename the DAG** (`dag_id`) as mentioned [here](https://stackoverflow.com/a/38028555/3679900) or have things improved? – y2k-shubham Jul 05 '18 at 18:15
-
@y2k-shubham No, there is no need to rename the DAG since at least v.1.9.x – dorvak Mar 08 '19 at 16:13
-
@dorvak source? If you have a reliable source for this, we can update several questions on StackOverflow which currently say renaming is required. :) – Kalinda Pride Nov 01 '22 at 18:34
-
Fwiw, I'm running Airflow v1.10 and was able to update the schedule interval without renaming the DAG – Kalinda Pride Nov 01 '22 at 18:35