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

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


The following commit(s) were added to refs/heads/master by this push:
     new 2963220f2 fix(spark): Correct shuffle read time metrics in spark UI 
tab (#2736)
2963220f2 is described below

commit 2963220f20ff0dd1dd13e057b598da31276be73b
Author: Zhen Wang <[email protected]>
AuthorDate: Thu Mar 5 19:25:20 2026 +0800

    fix(spark): Correct shuffle read time metrics in spark UI tab (#2736)
    
    ### What changes were proposed in this pull request?
    
    Correct shuffle read time metrics
    
    ### Why are the changes needed?
    
    The metrics for shuffle read time are mismatched.
    
    ### Does this PR introduce _any_ user-facing change?
    
    No.
    
    ### How was this patch tested?
    
    Needn't
---
 .../main/java/org/apache/uniffle/client/impl/ShuffleReadClientImpl.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/client/src/main/java/org/apache/uniffle/client/impl/ShuffleReadClientImpl.java
 
b/client/src/main/java/org/apache/uniffle/client/impl/ShuffleReadClientImpl.java
index 7cc386ad7..3bddd3dc8 100644
--- 
a/client/src/main/java/org/apache/uniffle/client/impl/ShuffleReadClientImpl.java
+++ 
b/client/src/main/java/org/apache/uniffle/client/impl/ShuffleReadClientImpl.java
@@ -424,8 +424,8 @@ public class ShuffleReadClientImpl implements 
ShuffleReadClient {
 
     return new ShuffleReadTimes(
         readDataTime.get(),
-        copyTime.get(),
         crcCheckTime.get(),
+        copyTime.get(),
         backgroundDecompressionTime,
         backgroundFetchTime);
   }

Reply via email to