I know there is a way to delete a DAG. But is it possible to delete a DAG run with a specific run_id? Something like:
airflow delete_dag_run <dag_id> <run_id>
I know there is a way to delete a DAG. But is it possible to delete a DAG run with a specific run_id? Something like:
airflow delete_dag_run <dag_id> <run_id>
To delete a DAG Run from the Airflow UI:
Browse > "DAG Runs"
."With selected" > Delete
.You can also delete the "DAG Runs" from airflow database:
DELETE FROM dag_run
WHERE dag_id='my_dag_id' AND
state='STATE_I_WANT_TO_DELETE'