Re: [I] TriggerDagRunOperator target DAG stuck in queue if wait_for_completion is True [airflow]
github-actions[bot] commented on issue #50147: URL: https://github.com/apache/airflow/issues/50147#issuecomment-2928182926 This issue has been closed because it has not received response from the issue author. -- 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-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [I] TriggerDagRunOperator target DAG stuck in queue if wait_for_completion is True [airflow]
github-actions[bot] closed issue #50147: TriggerDagRunOperator target DAG stuck in queue if wait_for_completion is True URL: https://github.com/apache/airflow/issues/50147 -- 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-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [I] TriggerDagRunOperator target DAG stuck in queue if wait_for_completion is True [airflow]
github-actions[bot] commented on issue #50147: URL: https://github.com/apache/airflow/issues/50147#issuecomment-2908190770 This issue has been automatically marked as stale because it has been open for 14 days with no response from the author. It will be closed in next 7 days if no further activity occurs from the issue author. -- 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-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [I] TriggerDagRunOperator target DAG stuck in queue if wait_for_completion is True [airflow]
jroachgolf84 commented on issue #50147: URL: https://github.com/apache/airflow/issues/50147#issuecomment-2869296260 Is this only happening locally? This is the **expected** behavior for the SequentialExecutor. -- 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-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [I] TriggerDagRunOperator target DAG stuck in queue if wait_for_completion is True [airflow]
aridavis commented on issue #50147: URL: https://github.com/apache/airflow/issues/50147#issuecomment-2869295240 sorry for the late response, @jroachgolf84 @mchoccac . In my local, I'm using SequentialExecutor. In the Kubernetes I'm using CeleryExecutor (default by helm I think). Both default pool is 128 -- 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-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [I] TriggerDagRunOperator target DAG stuck in queue if wait_for_completion is True [airflow]
mchoccac commented on issue #50147: URL: https://github.com/apache/airflow/issues/50147#issuecomment-2868239325 Check the type of executor you are using or use the Docker image. -- 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-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [I] TriggerDagRunOperator target DAG stuck in queue if wait_for_completion is True [airflow]
jroachgolf84 commented on issue #50147: URL: https://github.com/apache/airflow/issues/50147#issuecomment-2849337396 Which executor are you using? What is the size of your default pool? -- 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-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [I] TriggerDagRunOperator target DAG stuck in queue if wait_for_completion is True [airflow]
aridavis commented on issue #50147: URL: https://github.com/apache/airflow/issues/50147#issuecomment-2848917089 Hello @mohamedmeqlad99 I don't think it is working. There are only 2 DAG, but only 1 is running. I have followed your suggestion. ``` with DAG( dag_id="child_dag_id", default_args=default_args, description="CHILD DAG", start_date=datetime(2025, 1, 1), catchup=False, max_active_runs=100, concurrency=100, ) as dag: ``` and I have check the airflow.cfg, and the configuration has been set like yours. I forgot to mention, everytime the Child DAG is triggered (which is stuck in queue). The webserver can't get the scheduler heart beat  And everytime I restart the scheduler, the Child DAG will be run but the parent DAG will fail because of the SIGTERM -- 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-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [I] TriggerDagRunOperator target DAG stuck in queue if wait_for_completion is True [airflow]
mohamedmeqlad99 commented on issue #50147: URL: https://github.com/apache/airflow/issues/50147#issuecomment-2848720950 did you try to increase concurrent DAG runs and task executions If limits are too low, the child_dag may get stuck in the queued state. In your DAG definition, set higher limits: ```python Copy Edit with DAG( dag_id="child_dag_id", max_active_runs=3, # Increase if needed concurrency=16, # Controls how many tasks can run in parallel ... ) as dag: ``` In airflow.cfg, check and increase the following parameters: ``` parallelism = 32 # Total number of task instances that can run in parallel dag_concurrency = 16 # Tasks per DAG that can run at once max_active_runs_per_dag = 16 # DAG runs per DAG allowed at the same time ``` -- 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-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [I] TriggerDagRunOperator target DAG stuck in queue if wait_for_completion is True [airflow]
boring-cyborg[bot] commented on issue #50147: URL: https://github.com/apache/airflow/issues/50147#issuecomment-2848584795 Thanks for opening your first issue here! Be sure to follow the issue template! If you are willing to raise PR to address this issue please do so, no need to wait for approval. -- 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-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org