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

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


The following commit(s) were added to refs/heads/master by this push:
     new 9beb1390e [MINOR] improvement(server): Reduce huge amount of server 
log when `Accepted blockId` (#2225)
9beb1390e is described below

commit 9beb1390e22af05e7c917f7bf63b5eeb3b658f8c
Author: maobaolong <[email protected]>
AuthorDate: Tue Oct 29 12:12:27 2024 +0800

    [MINOR] improvement(server): Reduce huge amount of server log when 
`Accepted blockId` (#2225)
    
    ### What changes were proposed in this pull request?
    
    Degrade the log of `Accepted blockIds report for` from `INFO` to `DEBUG` 
level.
    
    ### Why are the changes needed?
    
    Server log filled full of `Accepted blockId ...`, it is hard to find other 
useful log.
    
    ### Does this PR introduce _any_ user-facing change?
    
    No.
    
    ### How was this patch tested?
    
    No need, just log level change.
---
 .../main/java/org/apache/uniffle/server/ShuffleServerGrpcService.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/server/src/main/java/org/apache/uniffle/server/ShuffleServerGrpcService.java 
b/server/src/main/java/org/apache/uniffle/server/ShuffleServerGrpcService.java
index 695b63591..fbb86e8a4 100644
--- 
a/server/src/main/java/org/apache/uniffle/server/ShuffleServerGrpcService.java
+++ 
b/server/src/main/java/org/apache/uniffle/server/ShuffleServerGrpcService.java
@@ -846,7 +846,7 @@ public class ShuffleServerGrpcService extends 
ShuffleServerImplBase {
         long start = System.currentTimeMillis();
         int expectedBlockCount =
             partitionToBlockIds.values().stream().mapToInt(x -> 
x.length).sum();
-        LOG.info(
+        LOG.debug(
             "Accepted blockIds report for {} blocks across {} partitions as 
shuffle result for task {}",
             expectedBlockCount,
             partitionToBlockIds.size(),

Reply via email to