You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is the structure of intermediate data at reducer side.
Intermediate data
= (idata of key range 1, idata of key range 2, ..., idata of key range N)
idata of key range k
= (iblock1, iblock2, ..., iblockM)
Currently, for any idata of a specific key range, key and values are sorted within each iblock, but not across the entire iblocks.
As a result, a reducer will get a key with "partially sorted" list of values.
It is required to sort values across the iblocks externally (the original eclipseMR is also missing this feature).
The text was updated successfully, but these errors were encountered:
I understand this issue. I wonder do we need the key values idata to be sorted externally to perform reduce operations. In my understanding the keys must be sorted only within the shuffle phase so that every node gets its corresponding key-values clusters. I might be wrong :)
What would happen if we do not sort those keys externally ?
This is the structure of intermediate data at reducer side.
Currently, for any idata of a specific key range, key and values are sorted within each iblock, but not across the entire iblocks.
As a result, a reducer will get a key with "partially sorted" list of values.
The text was updated successfully, but these errors were encountered: