What is the core idea of the MapReduce programming model?
- A Splitting work into parallel map tasks then combining results in reduce tasks
- B Processing all data on one node
- C Storing data in memory only
- D Streaming data continuously
Answer
Splitting work into parallel map tasks then combining results in reduce tasks
The shuffle phase between map and reduce moves data across the network and is usually the performance bottleneck.





