Airflow is not able to refresh the dags. Airflow is hosted on azure vm and filestorage is mounted and added those mounts in env file.
Eearlier things were working file. as soon as I uplaod an updated script, changes would show up. But now it suddenly stopped updating.
Things I tried:
Restarted all containers, docker down and up many time.
just restarted webserver many times.
Removed file from file storage and added again.
In your airflow.cfg, you've these two configurations to control this behavior:
after how much time a new DAGs should be picked up from the filesystem
min_file_process_interval = 0 dag_dir_list_interval = 60
python -c "from airflow.models import DagBag; d = DagBag();"
-
airflow dags list -v.
Is there anything else i can try to get the dags updated?