I have a question regarding Joins in Map/Reduce. If I want to do inner join in hadoop Map/Reduce how would I do it. I have heard of CompositeInputFormat but haven't found much detail on it.
Actually, I have got a dataset-1 of around size 1GB with records in it. My input to Map/Reduce is an another dataset-2 of around 10GB. What I have been doining so far is that I have been opening and reading the 1GB dataset-1 file within the Map() function using I/O from HDFS and comparing it with each value I get from the Map/Reduce input dataset-2.
If you guys don't mind me asking a foolish question, please guide me.
Thank you!