hi i wanted to learn how to sort the word count by value in hadoop.i know hadoop takes of sorting keys, but not by values.
i know to sort the values we must have a partitioner,groupingcomparator and a sortcomparator
but i am bit confused in applying these concepts together to sort the word count by value.
do we need another map reduce job to achieve the same or else a combiner to count the occurrences and then sort here and emit the same to reducer?
can any one explain how to sort word count example by values?