79729304

Date: 2025-08-08 04:07:30
Score: 0.5
Natty:
Report link

Is the issue just execution_timeout set to a low value? For me it was giving the zombie error but setting a higher value for execution_timeout solved it.

from datetime import timedelta

create_plots_task = PythonOperator(
    task_id='create_plots',
    python_callable=create_plots,
    provide_context=True,
    execution_timeout = = timedelta(minutes=120)
    dag=dag,
)
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is the is
Posted by: MikeKulls