RDD.
union
Return the union of this RDD and another one.
New in version 0.7.0.
RDD
another RDD
the union of this RDD and another one
See also
SparkContext.union()
pyspark.sql.DataFrame.union()
Examples
>>> rdd = sc.parallelize([1, 1, 2, 3]) >>> rdd.union(rdd).collect() [1, 1, 2, 3, 1, 1, 2, 3]
previous
pyspark.RDD.treeReduce
next
pyspark.RDD.unpersist