Repository: spark Updated Branches: refs/heads/master 70e824f75 -> d65fd554b
[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 <[email protected]> Closes #2687 from falaki/sparkTableUI and squashes the following commits: fd06409 [Hossein] Limit width of cell when RDD name is too long Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/d65fd554 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/d65fd554 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/d65fd554 Branch: refs/heads/master Commit: d65fd554b4de1dbd8db3090b0e50994010d30e78 Parents: 70e824f Author: Hossein <[email protected]> Authored: Tue Oct 7 11:46:26 2014 -0700 Committer: Josh Rosen <[email protected]> Committed: Tue Oct 7 11:46:26 2014 -0700 ---------------------------------------------------------------------- core/src/main/resources/org/apache/spark/ui/static/webui.css | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/d65fd554/core/src/main/resources/org/apache/spark/ui/static/webui.css ---------------------------------------------------------------------- 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 445110d..152bde5 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 } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
