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 <[email protected]>

Closes apache#2687 from falaki/sparkTableUI and squashes the following commits:

fd06409 [Hossein] Limit width of cell when RDD name is too long
  • Loading branch information
falaki authored and JoshRosen committed Oct 7, 2014
1 parent 70e824f commit d65fd55
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
Original file line number Diff line number Diff line change
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 d65fd55

Please sign in to comment.