In MapReduce, what does the Reducer do after receiving the sorted output from the Mapper?

  • Aggregation
  • Filtering
  • Shuffling
  • Sorting
After receiving the sorted output from the Mapper, the Reducer in MapReduce performs aggregation. It combines the intermediate key-value pairs based on the keys, producing the final output. This phase is crucial for summarizing and processing the data.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *