rom1mouret commented on PR #27111: URL: https://github.com/apache/airflow/pull/27111#issuecomment-1312588690
With my Airflow (1.14.15), the SLA miss was not detected in your scenario (https://github.com/apache/airflow/issues/26566) until the second DAG run. I might have found the reason. Airflow 1.14.15 does check for the SLA one interval ahead of each task, but it does so for SUCCESS/SKIPPED tasks only, not the currently running tasks. When a new run is triggered, the SUCCESS/SKIPPED tasks from the *previous* run will be one interval behind, so looking one interval ahead works for these tasks. That’s when the SLA miss is triggered. Definitely later than I expected. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
