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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
