Reputation: 61
Is there a way to trigger the next task based on previous task run states. Scenario as below:
Upvotes: 6
Views: 7872
Reputation: 765
You have multiple options here:
default_args = {'email': ['some_email_adress'],'email_on_failure': True"}
, airflow will then send an email with the error/sla miss to the defined emails.Upvotes: 2