YARN-2321. NodeManager web UI can incorrectly report Pmem enforcement. Contributed by Leitao Guo
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1612411 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d3bf8186ae
commit
1ad2d7b405
@ -79,6 +79,9 @@ Release 2.6.0 - UNRELEASED
|
|||||||
YARN-2244. FairScheduler missing handling of containers for unknown
|
YARN-2244. FairScheduler missing handling of containers for unknown
|
||||||
application attempts. (Anubhav Dhoot via kasha)
|
application attempts. (Anubhav Dhoot via kasha)
|
||||||
|
|
||||||
|
YARN-2321. NodeManager web UI can incorrectly report Pmem enforcement
|
||||||
|
(Leitao Guo via jlowe)
|
||||||
|
|
||||||
Release 2.5.0 - UNRELEASED
|
Release 2.5.0 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
@ -72,7 +72,7 @@ protected void render(Block html) {
|
|||||||
._("Total Pmem allocated for Container",
|
._("Total Pmem allocated for Container",
|
||||||
StringUtils.byteDesc(info.getTotalPmemAllocated() * BYTES_IN_MB))
|
StringUtils.byteDesc(info.getTotalPmemAllocated() * BYTES_IN_MB))
|
||||||
._("Pmem enforcement enabled",
|
._("Pmem enforcement enabled",
|
||||||
info.isVmemCheckEnabled())
|
info.isPmemCheckEnabled())
|
||||||
._("Total VCores allocated for Containers",
|
._("Total VCores allocated for Containers",
|
||||||
String.valueOf(info.getTotalVCoresAllocated()))
|
String.valueOf(info.getTotalVCoresAllocated()))
|
||||||
._("NodeHealthyStatus",
|
._("NodeHealthyStatus",
|
||||||
|
Loading…
Reference in New Issue
Block a user