What is a combiner in Hadoop?
A Combiner is a mini-reduce process which operates only on data generated by a Mapper. When Mapper emits the data, combiner receives it as input and sends the output to a reducer. In Hadoop, a combiner is a feature that allows the intermediate output of the map tasks to be combined or reduced before being … Read more