I have a basic understanding of how Hadoop order the data from Mapper to Reducer.
I have the following data written to context
Mapper. The below data is a key, value pair
abc 1234
cde 2394
dec 8273
abc 2348
cde 8780
dec 6590
Key's abc, cde, dec
continuous for n-times with same or different values.
Reducer reads in key with group of values. I.e
abc {1234, 2348, ...} and so on with other keys.
Question: Is there a possibility of reading data into reducer in a same order of Mapper output, instead of unique keys group with values ?