How do I get the sorted o/p using Hadoop mapreduce programming.
Is there any way to get final key-value pair in sorted order. ( either by key or value).
Any pointers on this greatly appreciated.
Thank You R
|
How do I get the sorted o/p using Hadoop mapreduce programming. Is there any way to get final key-value pair in sorted order. ( either by key or value). Any pointers on this greatly appreciated. Thank You R |
|||
|
|
|
By default, MapReduce will sort input records by their keys. However, it might help you more to download latest Hadoop release and check out examples they have. There are different sort examples as well. If you need more information on sort order, this is how it can be changed. The sort order for keys is controlled by a RawComparator, which is found as follows:
|
|||||
|
|
"Hadoop: The Definitive Guide" 2nd edition describes global sort in chapter 8 with code samples. |
|||
|
|