is it possible to process values with same key on different reducers ? from all mappers i got data with same key and i want to process it with different reducers ? my confusion is that the book says all values with same key will go to same reducer ...
mapper1(k1,v1),mapper2(k1,v2),mapper3(k1,v3) and so on...
i don't want all data to same reducer ...it should be like,
reducer1(k1,v1),reducer2(k1,v2)....
and lets say reducer1 produce sum1 and reducer2 produce sum2 and i want that
sum=sum2+sum1
how should i do that ?