wgtmac commented on code in PR #3559:
URL: https://github.com/apache/parquet-java/pull/3559#discussion_r3643416422
##########
parquet-hadoop/src/main/java/org/apache/parquet/hadoop/ParquetFileReader.java:
##########
@@ -2368,6 +2384,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:
With checksum verification enabled by default, `ChecksumFileSystem` returns
a sliced buffer rather than the allocator-owned buffer. Releasing it here fails
with strict allocators and leaves the original allocations unreleased;
`core-site.xml` only hides this path in tests. Please either fall back when
`VECTOREDIO_BUFFERS_SLICED` is advertised or track and release the actual
allocated buffers.
--
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]