This is an automated email from the ASF dual-hosted git repository.
danny0405 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hudi.git
The following commit(s) were added to refs/heads/master by this push:
new d286ae44c0f [MINOR] Remove the redundant log in HFileBootstrapIndex
(#11115)
d286ae44c0f is described below
commit d286ae44c0fc4562a48d99ec40b4ce2a4fc198ea
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 bb1f69c8360..2faab4d29ad 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
@@ -86,7 +86,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);
@@ -434,7 +434,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);
}