I was wondering if there was any way to turn off shuffling/sorting in the Map phase of a job? My job doesn't require a Reduce phase so I don't need the shuffle and sort.
Im using hadoop version 2.2.0
Thanks
I was wondering if there was any way to turn off shuffling/sorting in the Map phase of a job? My job doesn't require a Reduce phase so I don't need the shuffle and sort.
Im using hadoop version 2.2.0
Thanks
You can setNumReduceTask to 0 which will just map the data without shuffling and sorting.