weeway commented on issue #10443: URL: https://github.com/apache/dolphinscheduler/issues/10443#issuecomment-1170651115
I found the root cause and already submited a [PR](https://github.com/apache/dolphinscheduler/pull/10684) The reason is that all `WorkflowExecuteThread` share the same `taskRetryCheckList` and dependent task checking rely on the `taskRetryCheckList `. When a workflow run with `failedstrategy:end tasks` and some task failed in the workflow, the `taskRetryCheckList ` will be clear including the dependent tasks belong to another workflow. Beacause the `taskRetryCheckList ` is empty, the `StateWheelExecuteThread` can not generate `TASK_STATE_CHANGE` any more then the dependent tasks will not be checked any more. So in the UI, the dependent task node are always running and waiting. -- 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]
