You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2022/02/17 17:09:23 UTC

[GitHub] [airflow] NikolaySokolov commented on issue #18989: CeleryKubernetesExecutor does not shutdown gracefully in 2.2.0

NikolaySokolov commented on issue #18989:
URL: https://github.com/apache/airflow/issues/18989#issuecomment-1043198653


   @hamedhsn
   
   I've "fixed" it by increasing the liveliness health check timeout as it seems that it was taking more than 20 seconds and this is what caused it to be killed and hence the logs what you see about "Sending Signals.SIGTERM to GPID 55"
   
   Relevant content (I think): https://github.com/apache/airflow/pull/20698 & https://github.com/apache/airflow/issues/19001
   
   and the fix is 
   
   ```
     livenessProbe:
       enabled: true
       initialDelaySeconds: 10
       periodSeconds: 30
   -     timeoutSeconds: 10
   +    timeoutSeconds: 30
   ``` 
   
   May want to bump it even higher if scheduler keeps restarting. 


-- 
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: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org