aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/resources
diff options
context:
space:
mode:
authorAndrew Or <andrew@databricks.com>2015-05-07 12:29:18 -0700
committerAndrew Or <andrew@databricks.com>2015-05-07 12:29:18 -0700
commitf1216514b830eadcdfff6fca044afd6ae1585800 (patch)
treed6c26fabf5a5ebad278e42d4a7ae085cc002439b /core/src/main/resources
parent4eecf550aa7e4fb448baca82281bfd4e8bc4a778 (diff)
downloadspark-f1216514b830eadcdfff6fca044afd6ae1585800.tar.gz
spark-f1216514b830eadcdfff6fca044afd6ae1585800.tar.bz2
spark-f1216514b830eadcdfff6fca044afd6ae1585800.zip
[SPARK-7391] DAG visualization: auto expand if linked from another viz
This is an addition to #5729. If you click into a stage from the DAG viz on the job page, you might expect to expand on the stage. However, once you get to the stage page, you actually have to expand the DAG viz there yourself. This patch makes this happen automatically. It's a small UX improvement. Author: Andrew Or <andrew@databricks.com> Closes #5958 from andrewor14/viz-auto-expand and squashes the following commits: 03cd157 [Andrew Or] Automatically expand DAG viz if from job page
Diffstat (limited to 'core/src/main/resources')
-rw-r--r--core/src/main/resources/org/apache/spark/ui/static/spark-dag-viz.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/main/resources/org/apache/spark/ui/static/spark-dag-viz.js b/core/src/main/resources/org/apache/spark/ui/static/spark-dag-viz.js
index 76eb2c4641..cda27cad7e 100644
--- a/core/src/main/resources/org/apache/spark/ui/static/spark-dag-viz.js
+++ b/core/src/main/resources/org/apache/spark/ui/static/spark-dag-viz.js
@@ -178,8 +178,8 @@ function renderDagVizForJob(svgContainer) {
var stageId = metadata.attr("stage-id");
var containerId = VizConstants.graphPrefix + stageId;
// Link each graph to the corresponding stage page (TODO: handle stage attempts)
- var stageLink =
- "/stages/stage/?id=" + stageId.replace(VizConstants.stagePrefix, "") + "&attempt=0";
+ var stageLink = "/stages/stage/?id=" +
+ stageId.replace(VizConstants.stagePrefix, "") + "&attempt=0&expandDagViz=true";
var container = svgContainer
.append("a")
.attr("xlink:href", stageLink)