Skip to content

Commit

Permalink
[SPARK-3827] Very long RDD names are not rendered properly in web UI
Browse files Browse the repository at this point in the history
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 d65fd55)
Signed-off-by: Josh Rosen <joshrosen@apache.org>
  • Loading branch information
falaki authored and JoshRosen committed Oct 7, 2014
1 parent 964e3aa commit 82ab4a7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions core/src/main/resources/org/apache/spark/ui/static/webui.css
Expand Up @@ -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
}
Expand Down

0 comments on commit 82ab4a7

Please sign in to comment.