Hadoop Recipe – Implementing Custom Partitioner
This recipe is about implementing custom Parititoner A Partitioner in MapReduce world partitions the key space. The partitioner is used to derive the partition to which a key-value pair belongs. It is responsible for bring records with same key to same partition so that they can be processed together by a reducer. To implement a [...]
