This is an automated email from the ASF dual-hosted git repository. yihua pushed a commit to branch branch-0.x in repository https://gitbox.apache.org/repos/asf/hudi.git
commit af9eb516dd9355bdf44f46a9c43413f316e43f33 Author: Danny Chan <[email protected]> AuthorDate: Mon Apr 29 12:24:35 2024 +0800 [MINOR] Remove the redundant log in HFileBootstrapIndex (#11115) --- .../org/apache/hudi/common/bootstrap/index/HFileBootstrapIndex.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/hudi-common/src/main/java/org/apache/hudi/common/bootstrap/index/HFileBootstrapIndex.java b/hudi-common/src/main/java/org/apache/hudi/common/bootstrap/index/HFileBootstrapIndex.java index eb51e1d2f9e..92ec6b7a4ad 100644 --- a/hudi-common/src/main/java/org/apache/hudi/common/bootstrap/index/HFileBootstrapIndex.java +++ b/hudi-common/src/main/java/org/apache/hudi/common/bootstrap/index/HFileBootstrapIndex.java @@ -87,7 +87,7 @@ import static org.apache.hudi.common.util.StringUtils.getUTF8Bytes; public class HFileBootstrapIndex extends BootstrapIndex { - protected static final long serialVersionUID = 1L; + private static final long serialVersionUID = 1L; private static final Logger LOG = LoggerFactory.getLogger(HFileBootstrapIndex.class); @@ -436,7 +436,6 @@ public class HFileBootstrapIndex extends BootstrapIndex { * @param fileSystem File System */ private static HFile.Reader createReader(String hFilePath, Configuration conf, FileSystem fileSystem) { - LOG.info("Opening HFile for reading :" + hFilePath); return HoodieHFileUtils.createHFileReader(fileSystem, new HFilePathForReader(hFilePath), new CacheConfig(conf), conf); }
