I am implementing reduce side Join in Hadoop MapReduce(Java) for that purpose I am using multiple inputs, e.g there are two files Customers and Orders and I joined them considering cid(customer_id).
My Questions :
- In the above program if I write combiner class how is it going to work, as far as I know combiner is mapper level aggregator, however in this case we have two mapper logics.
- Will the combiner logic be applied to both mapper logics
- Is there any way using which I can apply combiner logic to any one mapper logic