yihua commented on code in PR #13563:
URL: https://github.com/apache/hudi/pull/13563#discussion_r2239851811
##########
hudi-common/src/main/java/org/apache/hudi/io/storage/HoodieNativeAvroHFileReader.java:
##########
@@ -338,10 +339,24 @@ private HFileReader newHFileReader() throws IOException {
return new HFileReaderImpl(inputStream, fileSize);
}
+ private Option<BloomFilter> getBloomFilter() {
+ Option<BloomFilter> bloomFilter = Option.empty();
+ if (config.enabled()) {
Review Comment:
Added a flag to control whether to use bloom filter for full-key lookup.
--
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]