yihua commented on code in PR #13675: URL: https://github.com/apache/hudi/pull/13675#discussion_r2274771467
########## hudi-common/src/main/java/org/apache/hudi/metadata/BloomFilterIndexRawKey.java: ########## @@ -26,8 +26,31 @@ /** * Represents a raw key for bloom filter metadata. + * <p> + * The BLOOM_FILTERS partition stores bloom filters for each data file to enable + * efficient filtering of files that might contain a specific record key. + * Each bloom filter helps avoid reading files that definitely don't contain a record. + * <p> + * Raw key format: base64(partition_identifier) + base64(file_name) + * - partition_identifier: The partition path (or "__HIVE_DEFAULT_PARTITION__" for non-partitioned tables) Review Comment: Could you fix the docs for non-partitioned tables for all keys? It should use `.` as far as I remember. -- 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]
