You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by sa...@apache.org on 2021/04/19 01:48:31 UTC

[spark] branch master updated: [SPARK-35092][UI] the auto-generated rdd's name in the storage tab should be truncated if it is too long

This is an automated email from the ASF dual-hosted git repository.

sarutak pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/master by this push:
     new 978cd0b  [SPARK-35092][UI] the auto-generated rdd's name in the storage tab should be truncated if it is too long
978cd0b is described below

commit 978cd0bf4991de81ebe8a82b67144c0029464fe6
Author: kyoty <ec...@gmail.com>
AuthorDate: Mon Apr 19 10:46:51 2021 +0900

    [SPARK-35092][UI] the auto-generated rdd's name in the storage tab should be truncated if it is too long
    
    ### What changes were proposed in this pull request?
    the auto-generated rdd's name in the storage tab should be truncated  as a single line if it is too long.
    
    ### Why are the changes needed?
    to make the ui shows more friendly.
    
    ### Does this PR introduce _any_ user-facing change?
    No
    
    ### How was this patch tested?
    just a simple modifition in css, manual test works well like below:
    
    before modified:
    ![the rdd title in storage page shows too long](https://user-images.githubusercontent.com/52202080/115009655-17da2500-9edf-11eb-86a7-088bed7ef8f7.png)
    
    after modified:
    Tht titile  needs just one line:
    
    ![storage标题过长修改后](https://user-images.githubusercontent.com/52202080/114872091-8c07c080-9e2c-11eb-81a8-0c097b1a77bf.png)
    
    Closes #32191 from kyoty/storage-rdd-titile-display-improve.
    
    Authored-by: kyoty <ec...@gmail.com>
    Signed-off-by: Kousuke Saruta <sa...@oss.nttdata.com>
---
 core/src/main/scala/org/apache/spark/ui/UIUtils.scala | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/core/src/main/scala/org/apache/spark/ui/UIUtils.scala b/core/src/main/scala/org/apache/spark/ui/UIUtils.scala
index aaea3a6..49ea3bf 100644
--- a/core/src/main/scala/org/apache/spark/ui/UIUtils.scala
+++ b/core/src/main/scala/org/apache/spark/ui/UIUtils.scala
@@ -325,7 +325,8 @@ private[spark] object UIUtils extends Logging {
         <div class="container-fluid">
           <div class="row">
             <div class="col-12">
-              <h3 style="vertical-align: bottom; display: inline-block;">
+              <h3 style="vertical-align: bottom; white-space: nowrap; overflow: hidden;
+                text-overflow: ellipsis;">
                 {title}
                 {helpButton}
               </h3>

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org