Combiner—local reduce (在本地reduce,最后再做一次reduce)

In many situations with MapReduce applications, we may wish to perform a “local
reduce ” before we distribute the mapper results. Consider the WordCount example of

The MapReduce data flow, with an emphasis on partitioning and
shuffling. Each icon is a key/value pair. The shapes represents keys, whereas
the inner patterns represent values. After shuffling, all icons of the same shape
(key) are in the same reducer. Different keys can go to the same reducer, as seen
in the rightmost reducer. The partitioner decides which key goes where. Note that
the leftmost reducer has more load due to more data under the “ellipse” key.

3.2.6 Word counting with predefined mapper and reducer classes

3.3 Reading and writing

原文地址:https://www.cnblogs.com/chenli0513/p/2290871.html