jonvex commented on code in PR #10673:
URL: https://github.com/apache/hudi/pull/10673#discussion_r1491247516
##########
hudi-common/src/main/java/org/apache/hudi/common/bootstrap/index/HFileBootstrapIndex.java:
##########
@@ -238,7 +239,7 @@ private static HFileReader createReader(String hFilePath,
FileSystem fileSystem)
LOG.info("Opening HFile for reading :" + hFilePath);
Path path = new Path(hFilePath);
long fileSize = fileSystem.getFileStatus(path).getLen();
- FSDataInputStream stream = fileSystem.open(path);
+ SeekableDataInputStream stream = new
HadoopSeekableDataInputStream(fileSystem.open(path));
Review Comment:
Is this going to be HadoopSeekableDataInputStream going forward? Or is
hadoop going to be fully removed from here at some point?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]