Repository: spark
Updated Branches:
  refs/heads/branch-1.5 598a5c2cc -> fb421af08


[SPARK-12672][STREAMING][UI] Use the uiRoot function instead of default root 
path to gain the streaming batch url.

Author: huangzhaowei <carlmartin...@gmail.com>

Closes #10617 from SaintBacchus/SPARK-12672.


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

Branch: refs/heads/branch-1.5
Commit: fb421af08de73e4ae6b04a576721109cae561865
Parents: 598a5c2
Author: huangzhaowei <carlmartin...@gmail.com>
Authored: Wed Jan 6 12:48:57 2016 -0800
Committer: Shixiong Zhu <shixi...@databricks.com>
Committed: Wed Jan 6 12:53:04 2016 -0800

----------------------------------------------------------------------
 .../scala/org/apache/spark/streaming/scheduler/JobScheduler.scala | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/fb421af0/streaming/src/main/scala/org/apache/spark/streaming/scheduler/JobScheduler.scala
----------------------------------------------------------------------
diff --git 
a/streaming/src/main/scala/org/apache/spark/streaming/scheduler/JobScheduler.scala
 
b/streaming/src/main/scala/org/apache/spark/streaming/scheduler/JobScheduler.scala
index b5546db..4cb3132 100644
--- 
a/streaming/src/main/scala/org/apache/spark/streaming/scheduler/JobScheduler.scala
+++ 
b/streaming/src/main/scala/org/apache/spark/streaming/scheduler/JobScheduler.scala
@@ -26,6 +26,7 @@ import org.apache.spark.Logging
 import org.apache.spark.rdd.PairRDDFunctions
 import org.apache.spark.streaming._
 import org.apache.spark.streaming.ui.UIUtils
+import org.apache.spark.ui.{UIUtils => SparkUIUtils}
 import org.apache.spark.util.{EventLoop, ThreadUtils}
 
 
@@ -197,7 +198,7 @@ class JobScheduler(val ssc: StreamingContext) extends 
Logging {
       try {
         val formattedTime = UIUtils.formatBatchTime(
           job.time.milliseconds, ssc.graph.batchDuration.milliseconds, 
showYYYYMMSS = false)
-        val batchUrl = s"/streaming/batch/?id=${job.time.milliseconds}"
+        val batchUrl = 
s"${SparkUIUtils.uiRoot}/streaming/batch/?id=${job.time.milliseconds}"
         val batchLinkText = s"[output operation ${job.outputOpId}, batch time 
${formattedTime}]"
 
         ssc.sc.setJobDescription(


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to