chinaboyll commented on issue #6959:
URL:
https://github.com/apache/dolphinscheduler/issues/6959#issuecomment-985423105
I changed the source code :
org/apache/dolphinscheduler/server/master/runner/MasterTaskExecThread.java -
waitTaskQuit()
insert into Failure count.
`Integer num = 0;
if (num>=50 && taskInstance.getState() ==
ExecutionStatus.SUBMITTED_SUCCESS && !taskInstance.getState().typeIsFinished()){
cancelTaskInstance();
logger.error("worker is down,task is kill");
}else {
num++;
logger.info("master submit job error number: "+num);
}`
If I change the code, does it affect other implementations.
--
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]