the-other-tim-brown commented on code in PR #17709:
URL: https://github.com/apache/hudi/pull/17709#discussion_r2646302157
##########
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:
Is there a path that executes this that I can run locally?
--
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]