aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHossein <hossein@databricks.com>2014-10-07 11:46:26 -0700
committerJosh Rosen <joshrosen@apache.org>2014-10-07 11:46:43 -0700
commit82ab4a796c08bf14906017494ebd5ccdf090d255 (patch)
tree64d5a5a30c027ded02fa7824bd3789211a7b96c7
parent964e3aa4800a31037e00b533f965b0f162d29e67 (diff)
downloadspark-82ab4a796c08bf14906017494ebd5ccdf090d255.tar.gz
spark-82ab4a796c08bf14906017494ebd5ccdf090d255.tar.bz2
spark-82ab4a796c08bf14906017494ebd5ccdf090d255.zip
[SPARK-3827] Very long RDD names are not rendered properly in web UI
With Spark SQL we generate very long RDD names. These names are not properly rendered in the web UI. This PR fixes the rendering issue. [SPARK-3827] #comment Linking PR with JIRA Author: Hossein <hossein@databricks.com> Closes #2687 from falaki/sparkTableUI and squashes the following commits: fd06409 [Hossein] Limit width of cell when RDD name is too long (cherry picked from commit d65fd554b4de1dbd8db3090b0e50994010d30e78) Signed-off-by: Josh Rosen <joshrosen@apache.org>
-rw-r--r--core/src/main/resources/org/apache/spark/ui/static/webui.css5
1 files changed, 5 insertions, 0 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 445110d63e..152bde5f69 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
@@ -51,6 +51,11 @@ table.sortable thead {
cursor: pointer;
}
+table.sortable td {
+ word-wrap: break-word;
+ max-width: 600px;
+}
+
.progress {
margin-bottom: 0px; position: relative
}