What is a bloom filter used for in big data storage?
- A Quickly determining that a key is definitely not present, avoiding an unnecessary read
- B Compressing columns
- C Encrypting data
- D Balancing partitions
Answer
Quickly determining that a key is definitely not present, avoiding an unnecessary read
It can return false positives but never false negatives, which is exactly the property needed to skip reads safely.





