In Hadoop MapReduce, what is the function of the Map phase?

  • Aggregates the output of the Reduce phase
  • Converts input into key-value pairs
  • Distributes tasks to worker nodes
  • Sorts the input data
The Map phase in Hadoop MapReduce takes input data and processes it to generate key-value pairs, which are then passed to the Reduce phase for further processing. It involves tasks like data parsing and filtering.
Add your answer
Loading...

Leave a comment

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