yihua commented on code in PR #17709:
URL: https://github.com/apache/hudi/pull/17709#discussion_r2646249303
##########
hudi-common/src/main/java/org/apache/hudi/io/storage/HFileReaderFactory.java:
##########
@@ -107,7 +107,7 @@ private SeekableDataInputStream createInputStream(long
fileSize) throws IOExcept
StoragePath path = fileSource.asLeft();
byte[] buffer;
try (SeekableDataInputStream stream = storage.openSeekable(path,
false)) {
- buffer = new byte[(int) storage.getPathInfo(path).getLength()];
+ buffer = new byte[(int) fileSize];
Review Comment:
For an inline path (`inlinefs:`), this represents the log block size instead
of the full log file size. Will that be a problem?
--
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]