the-other-tim-brown commented on code in PR #17709:
URL: https://github.com/apache/hudi/pull/17709#discussion_r2709892139


##########
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:
   Confirmed that the size is equivalent of the length in this scenario and 
everything will therefore work as expected.



-- 
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]

Reply via email to