Describe join() operation. How is outer join supported?
Answer Posted / Gaurav Yadav
The join() operation combines two RDDs based on a common key. There are three types of joins: inner join, left outer join, and right outer join. In Spark, both inner and outer joins are supported using the join(), fullOuterJoin(), and leftOuterJoin() methods.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers