Repository: tez Updated Branches: refs/heads/master 495e6f0a4 -> c07ec7b6f
TEZ-3272. Add AMContainerImpl and AMNodeImpl to StateMachine visualization list. (Tsuyoshi Ozawa via hitesh) Project: http://git-wip-us.apache.org/repos/asf/tez/repo Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/c07ec7b6 Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/c07ec7b6 Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/c07ec7b6 Branch: refs/heads/master Commit: c07ec7b6fb3d25c41225f353cd045b4793c3a558 Parents: 495e6f0 Author: Hitesh Shah <[email protected]> Authored: Thu Sep 8 14:20:53 2016 -0700 Committer: Hitesh Shah <[email protected]> Committed: Thu Sep 8 14:20:53 2016 -0700 ---------------------------------------------------------------------- CHANGES.txt | 1 + tez-dag/pom.xml | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tez/blob/c07ec7b6/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index 060d6d7..fd6ab68 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -7,6 +7,7 @@ INCOMPATIBLE CHANGES ALL CHANGES: + TEZ-3272. Add AMContainerImpl and AMNodeImpl to StateMachine visualization list. TEZ-3284. Synchronization for every write in UnorderdKVWriter TEZ-3426. Second AM attempt launched for session mode and recovery disabled for certain cases TEZ-3230. Implement vertex manager and edge manager of cartesian product edge. http://git-wip-us.apache.org/repos/asf/tez/blob/c07ec7b6/tez-dag/pom.xml ---------------------------------------------------------------------- diff --git a/tez-dag/pom.xml b/tez-dag/pom.xml index 045dc26..e534eb4 100644 --- a/tez-dag/pom.xml +++ b/tez-dag/pom.xml @@ -26,7 +26,9 @@ <tez.dag.state.classes>org.apache.tez.dag.app.dag.impl.DAGImpl, org.apache.tez.dag.app.dag.impl.VertexImpl, org.apache.tez.dag.app.dag.impl.TaskImpl, - org.apache.tez.dag.app.dag.impl.TaskAttemptImpl</tez.dag.state.classes> + org.apache.tez.dag.app.dag.impl.TaskAttemptImpl, + org.apache.tez.dag.app.rm.node.AMNodeImpl, + org.apache.tez.dag.app.rm.container.AMContainerImpl</tez.dag.state.classes> <tez.graphviz.title>Tez</tez.graphviz.title> <tez.graphviz.output.file>Tez.gv</tez.graphviz.output.file> </properties>
