Airflow SLA miss implementation -


i new airflow , trying implement sla miss functionality in dag

default_args = {     'owner': 'airflow',     'depends_on_past': false,     'start_date': datetime(2017,07,24),     'email': ['jspsai@gmail.com'],     'email_on_failure': false,     'email_on_retry': false,     'retries': 5,     'retry_delay': timedelta(minutes=5),     'sla':timedelta(seconds=30),     'pool':'demo',     'queue':'slaq',     'run_as_user':'ec2-user' } 

but sla not applied , not able figure out issue is

i gave sla @ task level no luck.

any appreciated.

thanks


Comments

Popular posts from this blog

node.js - Node js - Trying to send POST request, but it is not loading javascript content -

javascript - Replicate keyboard event with html button -

javascript - Web audio api 5.1 surround example not working in firefox -