-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How do I know that the bloom filter configuration is successful? #11918
Comments
How about using parquet-cli? ➜ parquet bloom-filter -c a -v 2 20250106_091836_00029_airuh-4a353534-10e4-4d7e-8d38-4b9edab7bf1b.parquet
Row group 0:
--------------------------------------------------------------------------------
column a has no bloom filter
➜ parquet bloom-filter -c b -v 1 20250106_091836_00029_airuh-4a353534-10e4-4d7e-8d38-4b9edab7bf1b.parquet
Row group 0:
--------------------------------------------------------------------------------
value 1 NOT exists.
➜ parquet bloom-filter -c b -v 2 20250106_091836_00029_airuh-4a353534-10e4-4d7e-8d38-4b9edab7bf1b.parquet
Row group 0:
--------------------------------------------------------------------------------
value 2 maybe exists. |
Thx for reply, It seems to work, I'll try it |
Query engine
Spark=3.3.1
Iceberg=1.4.3
Question
After setting new table properties
'write.parquet.bloom-filter-enabled.column.xxx' = 'true',
'write.parquet.bloom-filter-max-bytes' = '100',
How do I know that the bloom filter configuration is successful?
For example, how to see from the parquet file
The text was updated successfully, but these errors were encountered: