mirror of
https://gitee.com/dolphinscheduler/DolphinScheduler.git
synced 2024-12-02 04:08:31 +08:00
Improved shell task execution result log information, adding process.waitFor() and process.exitValue() information to the original log (#5691)
Co-authored-by: shenglm <shenglm840722@126.com>
This commit is contained in:
parent
bae047e4a3
commit
3b80760c42
@ -207,8 +207,8 @@ public abstract class AbstractCommandExecutor {
|
||||
// waiting for the run to finish
|
||||
boolean status = process.waitFor(remainTime, TimeUnit.SECONDS);
|
||||
|
||||
logger.info("process has exited, execute path:{}, processId:{} ,exitStatusCode:{}",
|
||||
taskExecutionContext.getExecutePath(), processId, result.getExitStatusCode());
|
||||
logger.info("process has exited, execute path:{}, processId:{} ,exitStatusCode:{} ,processWaitForStatus:{} ,processExitValue:{}",
|
||||
taskExecutionContext.getExecutePath(), processId, result.getExitStatusCode(), status, process.exitValue());
|
||||
|
||||
// if SHELL task exit
|
||||
if (status) {
|
||||
@ -224,7 +224,8 @@ public abstract class AbstractCommandExecutor {
|
||||
result.setExitStatusCode(isSuccessOfYarnState(appIds) ? EXIT_CODE_SUCCESS : EXIT_CODE_FAILURE);
|
||||
}
|
||||
} else {
|
||||
logger.error("process has failure , exitStatusCode : {} , ready to kill ...", result.getExitStatusCode());
|
||||
logger.error("process has failure , exitStatusCode:{}, processExitValue:{}, ready to kill ...",
|
||||
result.getExitStatusCode(), process.exitValue());
|
||||
ProcessUtils.kill(taskExecutionContext);
|
||||
result.setExitStatusCode(EXIT_CODE_FAILURE);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user