0
4.0kviews
Explain join/ matrix multiplication/ word count using MapReduce.
1 Answer
| written 9.5 years ago by |
JOIN using MapReduce:
The joins can be done at both Map side and Join side according to the nature of data sets of to be joined.
Reduce Side Join
Let’s take the following tables containing employee and department data.

Let’s see how join query below can be achieved using reduce …