YARN-8043. Added the exception message for failed launches running under LCE.
Contributed by Shane Kumpf
This commit is contained in:
parent
947b282984
commit
e6b74164e9
|
@ -563,12 +563,13 @@ public class LinuxContainerExecutor extends ContainerExecutor {
|
|||
builder.append("Exception from container-launch.\n");
|
||||
builder.append("Container id: " + containerId + "\n");
|
||||
builder.append("Exit code: " + exitCode + "\n");
|
||||
builder.append("Exception message: " + e.getMessage() + "\n");
|
||||
if (!Optional.fromNullable(e.getErrorOutput()).or("").isEmpty()) {
|
||||
builder.append("Exception message: " + e.getErrorOutput() + "\n");
|
||||
builder.append("Shell error output: " + e.getErrorOutput() + "\n");
|
||||
}
|
||||
//Skip stack trace
|
||||
String output = e.getOutput();
|
||||
if (output != null && !e.getOutput().isEmpty()) {
|
||||
if (output != null && !output.isEmpty()) {
|
||||
builder.append("Shell output: " + output + "\n");
|
||||
}
|
||||
String diagnostics = builder.toString();
|
||||
|
|
Loading…
Reference in New Issue