YARN-3382. Some of UserMetricsInfo metrics are incorrectly set to root queue metrics. Contributed by Rohit Agarwal
This commit is contained in:
parent
174d8b3a10
commit
944a16579f
@ -177,6 +177,9 @@ Release 2.8.0 - UNRELEASED
|
||||
YARN-3465. Use LinkedHashMap to preserve order of resource requests.
|
||||
(Zhihai Xu via kasha)
|
||||
|
||||
YARN-3382. Some of UserMetricsInfo metrics are incorrectly set to root
|
||||
queue metrics. (Rohit Agarwal via jianhe)
|
||||
|
||||
Release 2.7.1 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
@ -63,11 +63,11 @@ public UserMetricsInfo(final ResourceManager rm, final String user) {
|
||||
this.userMetricsAvailable = true;
|
||||
|
||||
this.appsSubmitted = userMetrics.getAppsSubmitted();
|
||||
this.appsCompleted = metrics.getAppsCompleted();
|
||||
this.appsPending = metrics.getAppsPending();
|
||||
this.appsRunning = metrics.getAppsRunning();
|
||||
this.appsFailed = metrics.getAppsFailed();
|
||||
this.appsKilled = metrics.getAppsKilled();
|
||||
this.appsCompleted = userMetrics.getAppsCompleted();
|
||||
this.appsPending = userMetrics.getAppsPending();
|
||||
this.appsRunning = userMetrics.getAppsRunning();
|
||||
this.appsFailed = userMetrics.getAppsFailed();
|
||||
this.appsKilled = userMetrics.getAppsKilled();
|
||||
|
||||
this.runningContainers = userMetrics.getAllocatedContainers();
|
||||
this.pendingContainers = userMetrics.getPendingContainers();
|
||||
|
Loading…
Reference in New Issue
Block a user