YARN-3382. Some of UserMetricsInfo metrics are incorrectly set to root queue metrics. Contributed by Rohit Agarwal
(cherry picked from commit 944a16579f
)
This commit is contained in:
parent
e1843c9a46
commit
6cc0e9baa1
|
@ -29,6 +29,9 @@ Release 2.7.1 - UNRELEASED
|
|||
|
||||
YARN-3351. AppMaster tracking URL is broken in HA. (Anubhav Dhoot via kasha)
|
||||
|
||||
YARN-3382. Some of UserMetricsInfo metrics are incorrectly set to root
|
||||
queue metrics. (Rohit Agarwal via jianhe)
|
||||
|
||||
Release 2.7.0 - 2015-04-20
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -63,11 +63,11 @@ public class UserMetricsInfo {
|
|||
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