svn merge -c 1375687 FIXES: MAPREDUCE-4570. ProcfsBasedProcessTree#constructProcessInfo() prints a warning if procfsDir/<pid>/stat is not found. (Ahmed Radwan via bobby)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1375691 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f3f8edbd10
commit
1ee0c23b39
|
@ -697,6 +697,9 @@ Release 0.23.3 - UNRELEASED
|
||||||
MAPREDUCE-3506. Calling getPriority on JobInfo after parsing a history log
|
MAPREDUCE-3506. Calling getPriority on JobInfo after parsing a history log
|
||||||
with JobHistoryParser throws a NullPointerException (Jason Lowe via bobby)
|
with JobHistoryParser throws a NullPointerException (Jason Lowe via bobby)
|
||||||
|
|
||||||
|
MAPREDUCE-4570. ProcfsBasedProcessTree#constructProcessInfo() prints a
|
||||||
|
warning if procfsDir/<pid>/stat is not found. (Ahmed Radwan via bobby)
|
||||||
|
|
||||||
Release 0.23.2 - UNRELEASED
|
Release 0.23.2 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -512,7 +512,7 @@ public class ProcfsBasedProcessTree extends ProcessTree {
|
||||||
in = new BufferedReader(fReader);
|
in = new BufferedReader(fReader);
|
||||||
} catch (FileNotFoundException f) {
|
} catch (FileNotFoundException f) {
|
||||||
// The process vanished in the interim!
|
// The process vanished in the interim!
|
||||||
LOG.warn("The process " + pinfo.getPid()
|
LOG.info("The process " + pinfo.getPid()
|
||||||
+ " may have finished in the interim.");
|
+ " may have finished in the interim.");
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
|
@ -410,7 +410,7 @@ public class ProcfsBasedProcessTree {
|
||||||
in = new BufferedReader(fReader);
|
in = new BufferedReader(fReader);
|
||||||
} catch (FileNotFoundException f) {
|
} catch (FileNotFoundException f) {
|
||||||
// The process vanished in the interim!
|
// The process vanished in the interim!
|
||||||
LOG.warn("The process " + pinfo.getPid()
|
LOG.info("The process " + pinfo.getPid()
|
||||||
+ " may have finished in the interim.");
|
+ " may have finished in the interim.");
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue