You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/src/main/java/org/apache/hadoop/yarn/server/nodemanager/LinuxContainerExecutor.java
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -451,8 +451,10 @@ public void startLocalizer(LocalizerStartContext ctx)
451
451
452
452
} catch (PrivilegedOperationExceptione) {
453
453
intexitCode = e.getExitCode();
454
-
LOG.warn("Exit code from container {} startLocalizer is : {}",
455
-
locId, exitCode, e);
454
+
LOG.error("Unrecoverable issue occurred. Marking the node as unhealthy to prevent "
455
+
+ "further containers to get scheduled on the node and cause application failures. " +
456
+
"Exit code from the container " + locId + "startLocalizer is : " + exitCode, e);
0 commit comments