aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/resources
diff options
context:
space:
mode:
authorKay Ousterhout <kayousterhout@gmail.com>2015-01-25 16:48:26 -0800
committerAndrew Or <andrew@databricks.com>2015-01-25 16:48:26 -0800
commitfc2168f04e9b2c7ce45f59db0bf632a26d56c72b (patch)
tree89d53e9f332c13f7744bfe9d1cf5f3121dda5d94 /core/src/main/resources
parent8f5c827b01026bf45fc774ed7387f11a941abea8 (diff)
downloadspark-fc2168f04e9b2c7ce45f59db0bf632a26d56c72b.tar.gz
spark-fc2168f04e9b2c7ce45f59db0bf632a26d56c72b.tar.bz2
spark-fc2168f04e9b2c7ce45f59db0bf632a26d56c72b.zip
[SPARK-5326] Show fetch wait time as optional metric in the UI
With this change, here's what the UI looks like: ![image](https://cloud.githubusercontent.com/assets/1108612/5809994/1ec8a904-9ff4-11e4-8f24-6a59a1a858f7.png) If you want to locally test this, you need to spin up multiple executors, because the shuffle read metrics are only shown for data read remotely. Author: Kay Ousterhout <kayousterhout@gmail.com> Closes #4110 from kayousterhout/SPARK-5326 and squashes the following commits: 610051e [Kay Ousterhout] Josh style comments 5feaa28 [Kay Ousterhout] What is the difference here?? aa129cb [Kay Ousterhout] Removed inadvertent change 721c742 [Kay Ousterhout] Improved tooltip f3a7111 [Kay Ousterhout] Style fix 679b4e9 [Kay Ousterhout] [SPARK-5326] Show fetch wait time as optional metric in the UI
Diffstat (limited to 'core/src/main/resources')
-rw-r--r--core/src/main/resources/org/apache/spark/ui/static/webui.css3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/src/main/resources/org/apache/spark/ui/static/webui.css b/core/src/main/resources/org/apache/spark/ui/static/webui.css
index a1f7133f89..f23ba9dba1 100644
--- a/core/src/main/resources/org/apache/spark/ui/static/webui.css
+++ b/core/src/main/resources/org/apache/spark/ui/static/webui.css
@@ -190,6 +190,7 @@ span.additional-metric-title {
/* Hide all additional metrics by default. This is done here rather than using JavaScript to
* avoid slow page loads for stage pages with large numbers (e.g., thousands) of tasks. */
-.scheduler_delay, .deserialization_time, .serialization_time, .getting_result_time {
+.scheduler_delay, .deserialization_time, .fetch_wait_time, .serialization_time,
+.getting_result_time {
display: none;
}