10110346 commented on a change in pull request #23483: [MINOR][WEBUI]Modify the 
name of the column named "shuffle spill" in the StagePage
URL: https://github.com/apache/spark/pull/23483#discussion_r246266569
 
 

 ##########
 File path: core/src/main/resources/org/apache/spark/ui/static/stagepage.js
 ##########
 @@ -100,10 +100,10 @@ function getColumnNameForTaskMetricSummary(columnKey) {
             return "Scheduler Delay";
 
         case "diskBytesSpilled":
-            return "Shuffle spill (disk)";
+            return "Spill (disk)";
 
         case "memoryBytesSpilled":
-            return "Shuffle spill (memory)";
+            return "Spill (memory)";
 
 Review comment:
   `memoryBytesSpilled`  means spill from memory (wasted space in pages will be 
counted as memory spilled),  and  `diskBytesSpilled` means  spill to disk.
   In general, I think `memoryBytesSpilled`  is greater than  
`diskBytesSpilled`.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to