Explain leftOuterJoin() and rightOuterJoin() operation in Apache Spark?
Answer Posted / Varunt Yagi
In Apache Spark, `leftOuterJoin()` returns a dataset with all the records from the left RDD (first argument) and null for missing values on the right RDD (second argument). On the other hand, `rightOuterJoin()` returns a dataset with all the records from the right RDD and null for missing values on the left RDD.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers