Fokko commented on code in PR #3559:
URL: https://github.com/apache/parquet-java/pull/3559#discussion_r3565870390


##########
parquet-hadoop/src/main/java/org/apache/parquet/hadoop/ParquetFileReader.java:
##########
@@ -2327,6 +2327,10 @@ public void readFromVectoredRange(ParquetFileRange 
currRange, ChunkListBuilder b
         LOG.error(error, e);
         throw new IOException(error, e);
       }
+      // Release the vectored-read buffer back to the allocator when the row 
group is closed.
+      // Requires fs.file.checksum.verify=false so the returned buffer is the 
allocator buffer
+      // rather than a sliced subset (see Hadoop's fs.file.checksum.verify 
docs).
+      builder.addBuffersToRelease(Collections.singletonList(buffer));

Review Comment:
   Disabling it globally is exactly what where trying to do. There is an open 
issue on Hadoop that needs to be fixed: 
https://issues.apache.org/jira/browse/HADOOP-19901 That's not on Parquet to fix 
or test.



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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to