I am very new to airflow so please excuse the noobie question.
Like the title says I have an airflow dag that has been marked as failed but still gets ran by airflow scheduler. I see it in my logs. I can kill a process but the scheduler keeps respawning it in another process. How can I stop this?
default_args = { 'owner': 'airflow', 'depends_on_past': False, 'start_date': days_ago(1), 'email': ['[email protected]'], 'email_on_failure': True, 'email_on_retry': True, 'retries': 2, 'retry_delay': timedelta(minutes=10) } dag = DAG('etl_1', default_args=default_args, schedule_interval='15 11 * * *', )- BugCatcherJoeretries: 2which would imply Airflow would try the same task again if it were to fail. - raphael