Re: HIVE left semi join multiple tables with columns from multiple table

2012-12-27 Thread Souvik Banerjee
Thanks a lot Mark for your attention. But I think I cannot go for INNER join, the reason behind the fact being that I want all rows of Table3 irrespective of there is any row corresponding to that ID in Table 1 or Table 2. Probably I would have taken care of that while providing the example. The mo

Re: HIVE left semi join multiple tables with columns from multiple table

2012-12-27 Thread Mark Grover
Souvik, Let me begin by saying that simplifying the problem goes a long way in helping us answer your question. You did it really nicely here, so thank you for doing that. Why don't you use INNER JOIN instead of LEFT SEMI JOIN? You can express the same query as INNER JOIN with no restrictions on w

Re: Map side join

2012-12-27 Thread Souvik Banerjee
Hi, To conclude this thread I am summarizing my experiences. Correct me if think // observed otherwise. 1) For Map side join you need to set the flag hive.auto.convert.join=true; Map side join works well with multiple table and multiple Join condition. 2) You can change the size of the small tabl