Question
When is a replicated map-side join appropriate?
Select an option. Your answer will be checked instantly.
Correct Answer: C. When one dataset is small enough to distribute to every mapper
Explanation:
Each mapper loads the small table and joins it with its input partition.
This avoids reducer-side network transfer for the large dataset.
Leave a Reply