Repository: tez Updated Branches: refs/heads/branch-0.7 ac6f79ce7 -> 1ba01ee55
TEZ-3243. TEZ-3243. Output vertices are hidden for UI graph view (jeagles) Project: http://git-wip-us.apache.org/repos/asf/tez/repo Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/1ba01ee5 Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/1ba01ee5 Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/1ba01ee5 Branch: refs/heads/branch-0.7 Commit: 1ba01ee557a8448e1bd2c48372c2b6ffe0a1cc45 Parents: ac6f79c Author: Jonathan Eagles <[email protected]> Authored: Fri May 6 09:43:24 2016 -0500 Committer: Jonathan Eagles <[email protected]> Committed: Fri May 6 09:43:24 2016 -0500 ---------------------------------------------------------------------- CHANGES.txt | 1 + .../src/main/webapp/app/scripts/components/dag-view/graph-view.js | 1 + 2 files changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tez/blob/1ba01ee5/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index 5aaacd0..ff0990c 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -9,6 +9,7 @@ INCOMPATIBLE CHANGES TEZ-2972. Avoid task rescheduling when a node turns unhealthy ALL CHANGES: + TEZ-3243. Output vertices are hidden for UI graph view TEZ-3241. Exclude LICENSE files from rat check. TEZ-3193. Deadlock in AM during task commit request. TEZ-3203. DAG hangs when one of the upstream vertices has zero tasks http://git-wip-us.apache.org/repos/asf/tez/blob/1ba01ee5/tez-ui/src/main/webapp/app/scripts/components/dag-view/graph-view.js ---------------------------------------------------------------------- diff --git a/tez-ui/src/main/webapp/app/scripts/components/dag-view/graph-view.js b/tez-ui/src/main/webapp/app/scripts/components/dag-view/graph-view.js index 1210bd4..e1100ae 100644 --- a/tez-ui/src/main/webapp/app/scripts/components/dag-view/graph-view.js +++ b/tez-ui/src/main/webapp/app/scripts/components/dag-view/graph-view.js @@ -370,6 +370,7 @@ App.DagViewComponent.graphView = (function (){ nodes.forEach(function (node) { if(node.type == App.DagViewComponent.dataProcessor.types.OUTPUT && node.get('vertex.outputs.length') == 1 && + !node.get('vertex.outEdgeIds.length') && node.get('treeParent.x') != node.get('x') ) { node.x = node.get('vertex.x');
