Merge -c 1494035 from trunk to branch-2 to fix YARN-799. Fix CgroupsLCEResourcesHandler to use /tasks instead of /cgroup.procs. Contributed by Chris Riccomini.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1494036 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
af90aa5265
commit
63779058cb
|
@ -643,6 +643,9 @@ Release 2.1.0-beta - UNRELEASED
|
|||
YARN-795. Fair scheduler queue metrics should subtract allocated vCores from
|
||||
available vCores. (ywskycn via tucu)
|
||||
|
||||
YARN-799. Fix CgroupsLCEResourcesHandler to use /tasks instead of
|
||||
/cgroup.procs. (Chris Riccomini via acmurthy)
|
||||
|
||||
Release 2.0.5-alpha - 06/06/2013
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -222,7 +222,7 @@ public class CgroupsLCEResourcesHandler implements LCEResourcesHandler {
|
|||
StringBuilder sb = new StringBuilder("cgroups=");
|
||||
|
||||
if (isCpuWeightEnabled()) {
|
||||
sb.append(pathForCgroup(CONTROLLER_CPU, containerName) + "/cgroup.procs");
|
||||
sb.append(pathForCgroup(CONTROLLER_CPU, containerName) + "/tasks");
|
||||
sb.append(",");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue