Skip to content

Latest commit

 

History

History
5 lines (3 loc) · 202 Bytes

spark-rdd-cogroupedrdd.adoc

File metadata and controls

5 lines (3 loc) · 202 Bytes

CoGroupedRDD

A RDD that cogroups its pair RDD parents. For each key k in parent RDDs, the resulting RDD contains a tuple with the list of values for that key.

Use RDD.cogroup(…​) to create one.