Question
What is a Bloom filter useful for in a MapReduce join?
Select an option. Your answer will be checked instantly.
Correct Answer: C. Probabilistically testing whether a key may exist in another dataset
Explanation:
Bloom filters use little memory and never produce false negatives.
Possible false positives are checked during the actual join.
Leave a Reply