Reputation: 1387
I have this problem. I changed the DAG workflow to replace on task with another. But it seems that the replaced task is still reflecting but is not part of the workflow already (please see image). My question is, how to take out that task?
Any help is much appreciated. Thanks!
Upvotes: 0
Views: 103
Reputation: 1758
I think your best bet would be to turn off the DAG, restart the scheduler (or just start it with airflow scheduler
) and wait. Usually the changes in the DAGs are only picked up after a while that the scheduler is running.
Also it could happen that while refreshing either the graph view or tree view of the DAG you'll see the task "randomly" appear and disappear, until it finally stabilize at the latest version.
After some scheduler cycles have passed and after refreshing you only see the new configuration, you can safely turn the DAG back on.
Upvotes: 1