Concept Flow - Word count as MapReduce example
Input Text
Map Function
Emit (word, 1)
Shuffle & Sort
Reduce Function
Sum counts per word
Output (word, total count)
The input text is split and processed by the Map function to emit word counts. Then, the framework groups counts by word and the Reduce function sums them up to produce final counts.