Reputation: 325
Hello i am a new user of Airflow i have started the Airflow webserver and i want to run my own batch on it, and there is Airflow by defaults DAG.
I tried to delete them from GUI then i followed instruction to delete DAG from CLI as said here
but the problem is that they reappear after a bit .
i already put the configuration of Airflow to False
load_examples = False
inside airflow.cfg
is there any solution to delete definitely every default DAG ?
Upvotes: 1
Views: 1523
Reputation: 18904
After you change load_examples = False
inside airflow.cfg
restart your Airflow Webserver & Scheduler.
If your example DAGs have already run, you might have to run airflow resetdb
if you are on Airflow <2 and run airflow db reset
if you are on Airflow>2.0.
Upvotes: 3