mjsqu commented on PR #33712: URL: https://github.com/apache/airflow/pull/33712#issuecomment-1694764636
Anyone following this PR/Issue, we have set the waiter_max_attempts value to `sys.maxsize` in the interim for affected `EcsRunTaskOperator` tasks, but you could choose a sufficiently large value to force the waiter to run for longer than `execution_timeout`: ``` waiter_max_attempts * waiter_delay > execution_timeout ``` e.g. for an `execution_timeout` of 1 hour (3600 seconds), set: ```py waiter_max_attempts = 650, # Greater than 600 waiter_delay = 6, # Total waiter time = 3,900 seconds == 65 minutes ``` -- 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]
