Merge -c 1485842 from trunk to branch-2 to fix HADOOP-9593 stack trace printed at ERROR for all yarn clients without hadoop.home set. Contributed by Steve Lougran.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1490102 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5826b0c186
commit
0cb5e152d4
|
@ -236,6 +236,9 @@ Release 2.1.0-beta - UNRELEASED
|
||||||
HADOOP-9481. Broken conditional logic with HADOOP_SNAPPY_LIBRARY. (Vadim
|
HADOOP-9481. Broken conditional logic with HADOOP_SNAPPY_LIBRARY. (Vadim
|
||||||
Bondarev via atm)
|
Bondarev via atm)
|
||||||
|
|
||||||
|
HADOOP-9593. stack trace printed at ERROR for all yarn clients without
|
||||||
|
hadoop.home set (stevel)
|
||||||
|
|
||||||
BREAKDOWN OF HADOOP-8562 SUBTASKS AND RELATED JIRAS
|
BREAKDOWN OF HADOOP-8562 SUBTASKS AND RELATED JIRAS
|
||||||
|
|
||||||
HADOOP-8924. Hadoop Common creating package-info.java must not depend on
|
HADOOP-8924. Hadoop Common creating package-info.java must not depend on
|
||||||
|
|
|
@ -227,8 +227,10 @@ abstract public class Shell {
|
||||||
home = homedir.getCanonicalPath();
|
home = homedir.getCanonicalPath();
|
||||||
|
|
||||||
} catch (IOException ioe) {
|
} catch (IOException ioe) {
|
||||||
LOG.error("Failed to detect a valid hadoop home directory", ioe);
|
if (LOG.isDebugEnabled()) {
|
||||||
home = null;
|
LOG.debug("Failed to detect a valid hadoop home directory", ioe);
|
||||||
|
}
|
||||||
|
home = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
return home;
|
return home;
|
||||||
|
@ -305,10 +307,13 @@ abstract public class Shell {
|
||||||
shexec = new ShellCommandExecutor(args);
|
shexec = new ShellCommandExecutor(args);
|
||||||
shexec.execute();
|
shexec.execute();
|
||||||
} catch (IOException ioe) {
|
} catch (IOException ioe) {
|
||||||
LOG.warn("setsid is not available on this machine. So not using it.");
|
LOG.debug("setsid is not available on this machine. So not using it.");
|
||||||
setsidSupported = false;
|
setsidSupported = false;
|
||||||
} finally { // handle the exit code
|
} finally { // handle the exit code
|
||||||
LOG.info("setsid exited with exit code " + shexec.getExitCode());
|
if (LOG.isDebugEnabled()) {
|
||||||
|
LOG.debug("setsid exited with exit code "
|
||||||
|
+ (shexec != null ? shexec.getExitCode() : "(null executor)"));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return setsidSupported;
|
return setsidSupported;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue