Repository: spark Updated Branches: refs/heads/branch-1.1 964e3aa48 -> 82ab4a796
[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 (cherry picked from commit d65fd554b4de1dbd8db3090b0e50994010d30e78) Signed-off-by: Josh Rosen <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/82ab4a79 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/82ab4a79 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/82ab4a79 Branch: refs/heads/branch-1.1 Commit: 82ab4a796c08bf14906017494ebd5ccdf090d255 Parents: 964e3aa Author: Hossein <[email protected]> Authored: Tue Oct 7 11:46:26 2014 -0700 Committer: Josh Rosen <[email protected]> Committed: Tue Oct 7 11:46:43 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/82ab4a79/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]
