Answer Posted / Kumar Abhineet
Map Side Join is a type of join operation in Apache Spark where the join condition is applied on the map phase itself. Instead of shuffling data to perform join like in Shuffle Join, Map Side Join keeps data local and performs the join by broadcasting one dataset (usually smaller) to all workers. This can be more efficient when dealing with large datasets.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers