In Hadoop Streaming, the communication between the mapper and reducer is typically done through ____.

  • File System
  • Inter-process Communication
  • Key-Value Pairs
  • Shared Memory
In Hadoop Streaming, the communication between the mapper and reducer is typically done through Key-Value pairs. The output of the mapper is sorted and grouped by keys before being passed to the reducer, facilitating the processing of data based on key associations.
Add your answer
Loading...

Leave a comment

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