Question - How do Hadoop MapReduce works?
Answer -
There are two phases of MapReduce operation.
- Map phase – In this phase, the input data is split by map tasks. The map tasks run in parallel. These split data is used for analysis purpose.
- Reduce phase- In this phase, the similar split data is aggregated from the entire collection and shows the result.