You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@samza.apache.org by xi...@apache.org on 2017/05/11 20:40:10 UTC

samza git commit: Increase the plan graph size

Repository: samza
Updated Branches:
  refs/heads/master 014a59c68 -> 92b67b7a3


Increase the plan graph size

Increase the canvas size to a standard 24 inch resolution and also the scaling factor.

Author: Xinyu Liu <xi...@xiliu-ld.linkedin.biz>

Reviewers: Jake Maes <jm...@apache.org>

Closes #186 from xinyuiscool/PLAN


Project: http://git-wip-us.apache.org/repos/asf/samza/repo
Commit: http://git-wip-us.apache.org/repos/asf/samza/commit/92b67b7a
Tree: http://git-wip-us.apache.org/repos/asf/samza/tree/92b67b7a
Diff: http://git-wip-us.apache.org/repos/asf/samza/diff/92b67b7a

Branch: refs/heads/master
Commit: 92b67b7a33d8246d96141cd7faa7f5f5e16b2194
Parents: 014a59c
Author: Xinyu Liu <xi...@xiliu-ld.linkedin.biz>
Authored: Thu May 11 13:39:48 2017 -0700
Committer: Xinyu Liu <xi...@xiliu-ld.linkedin.biz>
Committed: Thu May 11 13:39:48 2017 -0700

----------------------------------------------------------------------
 samza-shell/src/main/visualizer/plan.html | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/samza/blob/92b67b7a/samza-shell/src/main/visualizer/plan.html
----------------------------------------------------------------------
diff --git a/samza-shell/src/main/visualizer/plan.html b/samza-shell/src/main/visualizer/plan.html
index 9fe2e26..e4fca66 100644
--- a/samza-shell/src/main/visualizer/plan.html
+++ b/samza-shell/src/main/visualizer/plan.html
@@ -83,7 +83,7 @@
   <p id="summary"/>
 </section>
 
-<svg id="svg-canvas" width=1200 height=1000><g/></svg>
+<svg id="svg-canvas" width=1920 height=1200><g/></svg>
 
 <script id="js">
   var data = JSON.parse(plan);
@@ -112,7 +112,7 @@
   // Run the renderer. This is what draws the final graph.
   render(inner, g);
 
-  var initialScale = 0.65;
+  var initialScale = 0.75;
   zoom.scale(initialScale).event(svg);
   svg.attr('height', g.graph().height * initialScale + 100);
 </script>