how does Hadoop map reduce data flow work for word count program ? give example
Answers
Answered by
2
In MapReduce word count example, we find out the frequency of each word. Here, the role of Mapper is to map the keys to the existing values and the role of Reducer is to aggregate the keys of common values. So, everything is represented in the form of Key-value pair.
Similar questions