Repository: tez Updated Branches: refs/heads/master 83a8b5097 -> 0109af293
TEZ-3840. Tez should write TEZ_DAG_ID before TEZ_EXTRA_INFO (Jonathan Eagles via kshukla) Project: http://git-wip-us.apache.org/repos/asf/tez/repo Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/0109af29 Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/0109af29 Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/0109af29 Branch: refs/heads/master Commit: 0109af29314ee97b8703e0be85591e6e610f4cea Parents: 83a8b50 Author: Kuhu Shukla <[email protected]> Authored: Tue Sep 19 14:04:40 2017 -0500 Committer: Kuhu Shukla <[email protected]> Committed: Tue Sep 19 14:04:40 2017 -0500 ---------------------------------------------------------------------- .../dag/history/logging/ats/HistoryEventTimelineConversion.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tez/blob/0109af29/tez-plugins/tez-yarn-timeline-history/src/main/java/org/apache/tez/dag/history/logging/ats/HistoryEventTimelineConversion.java ---------------------------------------------------------------------- diff --git a/tez-plugins/tez-yarn-timeline-history/src/main/java/org/apache/tez/dag/history/logging/ats/HistoryEventTimelineConversion.java b/tez-plugins/tez-yarn-timeline-history/src/main/java/org/apache/tez/dag/history/logging/ats/HistoryEventTimelineConversion.java index 235a292..3b5dbfd 100644 --- a/tez-plugins/tez-yarn-timeline-history/src/main/java/org/apache/tez/dag/history/logging/ats/HistoryEventTimelineConversion.java +++ b/tez-plugins/tez-yarn-timeline-history/src/main/java/org/apache/tez/dag/history/logging/ats/HistoryEventTimelineConversion.java @@ -87,8 +87,8 @@ public class HistoryEventTimelineConversion { convertContainerStoppedEvent((ContainerStoppedEvent) historyEvent)); case DAG_SUBMITTED: return Lists.newArrayList( - convertDAGSubmittedToDAGExtraInfoEntity((DAGSubmittedEvent)historyEvent), - convertDAGSubmittedEvent((DAGSubmittedEvent)historyEvent)); + convertDAGSubmittedEvent((DAGSubmittedEvent)historyEvent), + convertDAGSubmittedToDAGExtraInfoEntity((DAGSubmittedEvent)historyEvent)); case DAG_INITIALIZED: return Collections.singletonList( convertDAGInitializedEvent((DAGInitializedEvent) historyEvent));
