This is an automated email from the ASF dual-hosted git repository. ayushsaxena pushed a commit to branch branch-3.3 in repository https://gitbox.apache.org/repos/asf/hadoop.git
The following commit(s) were added to refs/heads/branch-3.3 by this push: new 43db94c HDFS-16003. ProcessReport print invalidatedBlocks should judge debug level at first. Contributed by lei w. 43db94c is described below commit 43db94c7a30f14c7fdad06f07a16889b9a29d5be Author: Ayush Saxena <ayushsax...@apache.org> AuthorDate: Mon May 10 17:09:51 2021 +0530 HDFS-16003. ProcessReport print invalidatedBlocks should judge debug level at first. Contributed by lei w. --- .../apache/hadoop/hdfs/server/blockmanagement/BlockManager.java | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/blockmanagement/BlockManager.java b/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/blockmanagement/BlockManager.java index 6fd2343..0132e38 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/blockmanagement/BlockManager.java +++ b/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/blockmanagement/BlockManager.java @@ -2794,9 +2794,12 @@ public class BlockManager implements BlockStatsMXBean { namesystem.writeUnlock(); } - for (Block b : invalidatedBlocks) { - blockLog.debug("BLOCK* processReport 0x{}: {} on node {} size {} does not" - + " belong to any file", strBlockReportId, b, node, b.getNumBytes()); + if(blockLog.isDebugEnabled()) { + for (Block b : invalidatedBlocks) { + blockLog.debug("BLOCK* processReport 0x{}: {} on node {} size {} " + + "does not belong to any file.", strBlockReportId, b, + node, b.getNumBytes()); + } } // Log the block report processing stats from Namenode perspective --------------------------------------------------------------------- To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org For additional commands, e-mail: common-commits-h...@hadoop.apache.org