-
- Downloads
[SPARK-15373][WEB UI] Spark UI should show consistent timezones.
## What changes were proposed in this pull request? Currently, SparkUI shows two timezones in a single page when the timezone of browser is different from the server JVM timezone. The following is an example on Databricks CE which uses 'Etc/UTC' timezone. - The time of `submitted` column of list and pop-up description shows `2016/05/18 00:03:07` - The time of `timeline chart` shows `2016/05/17 17:03:07`.  This PR fixes the **timeline chart** to use the same timezone by the followings. - Upgrade `vis` from 3.9.0(2015-01-16) to 4.16.1(2016-04-18) - Override `moment` of `vis` to get `offset` - Update `AllJobsPage`, `JobPage`, and `StagePage`. ## How was this patch tested? Manual. Run the following command and see the Spark UI's event timelines. ``` $ SPARK_SUBMIT_OPTS="-Dscala.usejavacp=true -Duser.timezone=Etc/UTC" bin/spark-submit --class org.apache.spark.repl.Main ... scala> sql("select 1").head ``` Author: Dongjoon Hyun <dongjoon@apache.org> Closes #13158 from dongjoon-hyun/SPARK-15373.
Showing
- core/src/main/resources/org/apache/spark/ui/static/timeline-view.js 14 additions, 5 deletions...ain/resources/org/apache/spark/ui/static/timeline-view.js
- core/src/main/resources/org/apache/spark/ui/static/vis.min.css 1 addition, 1 deletion...src/main/resources/org/apache/spark/ui/static/vis.min.css
- core/src/main/resources/org/apache/spark/ui/static/vis.min.js 24 additions, 17 deletions.../src/main/resources/org/apache/spark/ui/static/vis.min.js
- core/src/main/scala/org/apache/spark/ui/UIUtils.scala 4 additions, 1 deletioncore/src/main/scala/org/apache/spark/ui/UIUtils.scala
- core/src/main/scala/org/apache/spark/ui/jobs/AllJobsPage.scala 1 addition, 1 deletion...src/main/scala/org/apache/spark/ui/jobs/AllJobsPage.scala
- core/src/main/scala/org/apache/spark/ui/jobs/JobPage.scala 2 additions, 1 deletioncore/src/main/scala/org/apache/spark/ui/jobs/JobPage.scala
- core/src/main/scala/org/apache/spark/ui/jobs/StagePage.scala 3 additions, 2 deletionscore/src/main/scala/org/apache/spark/ui/jobs/StagePage.scala
Loading
Please register or sign in to comment