YARN-3435. AM container to be allocated Appattempt AM container shown as
null. Contributed by Bibin A Chundatt
(cherry picked from commit 96d72118f5
)
This commit is contained in:
parent
00854d2c2f
commit
1eb6d74967
|
@ -94,6 +94,9 @@ Release 2.8.0 - UNRELEASED
|
||||||
YARN-3415. Non-AM containers can be counted towards amResourceUsage of a
|
YARN-3415. Non-AM containers can be counted towards amResourceUsage of a
|
||||||
Fair Scheduler queue (Zhihai Xu via Sandy Ryza)
|
Fair Scheduler queue (Zhihai Xu via Sandy Ryza)
|
||||||
|
|
||||||
|
YARN-3435. AM container to be allocated Appattempt AM container shown as null.
|
||||||
|
(Bibin A Chundatt via xgong)
|
||||||
|
|
||||||
Release 2.7.0 - UNRELEASED
|
Release 2.7.0 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -209,7 +209,7 @@ public class RMAppAttemptBlock extends AppAttemptBlock{
|
||||||
"AM Container:",
|
"AM Container:",
|
||||||
appAttempt.getAmContainerId() == null || containers == null
|
appAttempt.getAmContainerId() == null || containers == null
|
||||||
|| !hasAMContainer(appAttemptReport.getAMContainerId(), containers)
|
|| !hasAMContainer(appAttemptReport.getAMContainerId(), containers)
|
||||||
? null : root_url("container", appAttempt.getAmContainerId()),
|
? "N/A" : root_url("container", appAttempt.getAmContainerId()),
|
||||||
String.valueOf(appAttempt.getAmContainerId()))
|
String.valueOf(appAttempt.getAmContainerId()))
|
||||||
._("Node:", node)
|
._("Node:", node)
|
||||||
._(
|
._(
|
||||||
|
|
Loading…
Reference in New Issue