viiccwen commented on issue #54550:
URL: https://github.com/apache/airflow/issues/54550#issuecomment-3191787025

   Hello @TejasMorbagal,
   I found 
   ```
   [2025-08-15T14:17:59.890+0000] {plugins_manager.py:252} DEBUG - Importing 
entry_point plugin openlineage
   Loading 1 plugin(s) took 275.59 seconds
   ```
   
   Your maximum time only ~130s, but `OpenLineage` cost 275s to load.
   May be you should Modify your `values.yaml` to give the pod enough time to 
start:
   ```
   scheduler:
     startupProbe:
       command: ["/bin/bash", "-c", "airflow jobs check --job-type SchedulerJob 
--local"]
       initialDelaySeconds: 10
       periodSeconds: 10
       timeoutSeconds: 30
       failureThreshold: 90  # Increase to ~15 minutes (90 * 10s). Adjust as 
needed for your environment.
     livenessProbe:
       command: ["/bin/bash", "-c", "airflow jobs check --job-type SchedulerJob 
--local"]
       periodSeconds: 30
       timeoutSeconds: 30
       failureThreshold: 10   # Can also be extended if needed.
   ```
   
   This ensures Kubernetes will not restart the container prematurely, even if 
the provider takes a long time to load.
   Before doing this, you can temporarily disable `OpenLineage` to confirm the 
cause is it or not.


-- 
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]

Reply via email to