Repository: tez Updated Branches: refs/heads/branch-0.7 d0fb2ca28 -> d2695adf5
TEZ-3177. Addendum patch. Non-DAG events should use the session domain or no domain if the data does not need protection. (hitesh) Project: http://git-wip-us.apache.org/repos/asf/tez/repo Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/d2695adf Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/d2695adf Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/d2695adf Branch: refs/heads/branch-0.7 Commit: d2695adf50d63128505995477720d78ef1ecd289 Parents: d0fb2ca Author: Hitesh Shah <[email protected]> Authored: Tue Apr 5 08:08:45 2016 -0700 Committer: Hitesh Shah <[email protected]> Committed: Tue Apr 5 08:08:45 2016 -0700 ---------------------------------------------------------------------- .../main/java/org/apache/tez/dag/history/HistoryEventType.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tez/blob/d2695adf/tez-dag/src/main/java/org/apache/tez/dag/history/HistoryEventType.java ---------------------------------------------------------------------- diff --git a/tez-dag/src/main/java/org/apache/tez/dag/history/HistoryEventType.java b/tez-dag/src/main/java/org/apache/tez/dag/history/HistoryEventType.java index b03ad77..d0d7874 100644 --- a/tez-dag/src/main/java/org/apache/tez/dag/history/HistoryEventType.java +++ b/tez-dag/src/main/java/org/apache/tez/dag/history/HistoryEventType.java @@ -61,7 +61,8 @@ public enum HistoryEventType { case DAG_KILL_REQUEST: case VERTEX_INITIALIZED: case VERTEX_STARTED: - case VERTEX_CONFIGURE_DONE: + case VERTEX_DATA_MOVEMENT_EVENTS_GENERATED: + case VERTEX_PARALLELISM_UPDATED: case VERTEX_FINISHED: case TASK_STARTED: case TASK_FINISHED:
