My mapper emits 'uniq key' - 'very large value' pair.
My reducer doesn't know the key is unique. Thus, the reducer waits until all the mappers are completed.
I tried to use a combiner, but it is not an easy solution for me, because my reducer is very complicated.
My question is how can I perform the reducer after per map? without using a combiner.