pyspark.streaming.DStream.rightOuterJoinΒΆ

DStream.rightOuterJoin(other: pyspark.streaming.dstream.DStream[Tuple[K, U]], numPartitions: Optional[int] = None) β†’ pyspark.streaming.dstream.DStream[Tuple[K, Tuple[Optional[V], U]]][source]ΒΆ

Return a new DStream by applying β€˜right outer join’ between RDDs of this DStream and other DStream.

Hash partitioning is used to generate the RDDs with numPartitions partitions.