hudi-bot opened a new issue, #16171:
URL: https://github.com/apache/hudi/issues/16171
As of now, if a bloom filter for a file is missing from bloom filter
partition in MDT, we ignore it.
HoodieMetadataTableUtil
{code:java}
// If reading the bloom filter failed then do not add a record for this
file
if (bloomFilterBuffer == null) {
LOG.error("Failed to read bloom filter from " + addedFilePath);
return Stream.<HoodieRecord>empty().iterator();
}
} {code}
we should think about on what scenario, this is possible and how exactly we
can handle such situations.
## JIRA info
- Link: https://issues.apache.org/jira/browse/HUDI-6684
- Type: Improvement
- Fix version(s):
- 1.1.0
---
## Comments
11/Aug/23 04:59;codope;Let's think about when this could happen, but if it
is missing then why not simply add it?;;;
--
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]