YARN-5111. YARN container system metrics are not aggregated to application (Naganarasimha G R via sjlee)
Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/497d1c7f Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/497d1c7f Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/497d1c7f Branch: refs/heads/trunk Commit: 497d1c7f510a7d747a85352cc4a866a46dca4cb2 Parents: 7b8cfa5 Author: Sangjin Lee <[email protected]> Authored: Fri May 27 22:31:00 2016 -0700 Committer: Sangjin Lee <[email protected]> Committed: Sun Jul 10 08:46:01 2016 -0700 ---------------------------------------------------------------------- .../api/records/timelineservice/TimelineMetric.java | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/497d1c7f/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/api/records/timelineservice/TimelineMetric.java ---------------------------------------------------------------------- diff --git a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/api/records/timelineservice/TimelineMetric.java b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/api/records/timelineservice/TimelineMetric.java index f0c6849..5c908d6 100644 --- a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/api/records/timelineservice/TimelineMetric.java +++ b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/api/records/timelineservice/TimelineMetric.java @@ -17,17 +17,18 @@ */ package org.apache.hadoop.yarn.api.records.timelineservice; -import org.apache.hadoop.classification.InterfaceAudience; -import org.apache.hadoop.classification.InterfaceStability; -import org.apache.hadoop.yarn.exceptions.YarnRuntimeException; +import java.util.Collections; +import java.util.Map; +import java.util.TreeMap; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; -import java.util.Collections; -import java.util.Map; -import java.util.TreeMap; + +import org.apache.hadoop.classification.InterfaceAudience; +import org.apache.hadoop.classification.InterfaceStability; +import org.apache.hadoop.yarn.exceptions.YarnRuntimeException; /** * This class contains the information of a metric that is related to some @@ -89,6 +90,8 @@ public class TimelineMetric { * * @return Real time aggregation operation */ + // required by JAXB + @XmlElement(name = "aggregationOp") public TimelineMetricOperation getRealtimeAggregationOp() { return realtimeAggregationOp; } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
