Is it possible to flatten list inside RDD? For example convert:
val xxx: org.apache.spark.rdd.RDD[List[Foo]]
to:
val yyy:
val rdd = sc.parallelize(Array(List(1,2,3), List(4,5,6), List(7,8,9), List(10, 11, 12)))
// org.apache.spark.rdd.RDD[List[Int]] = ParallelCollectionRDD ...
val rddi = rdd.flatMap(list => list)
// rddi: org.apache.spark.rdd.RDD[Int] = FlatMappedRDD ...
// which is same as rdd.flatMap(identity)
// identity is a method defined in Predef object.
// def identity[A](x: A): A
rddi.collect()
// res2: Array[Int] = Array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12)
You just need to flatten it, but as there's no explicit 'flatten' method on RDD, you can do this:
rdd.flatMap(identity)
You could pimp the RDD
class to attach a .flatten
method (in order to follow the List
api):
object SparkHelper {
implicit class SeqRDDExtensions[T: ClassTag](val rdd: RDD[Seq[T]]) {
def flatten: RDD[T] = rdd.flatMap(identity)
}
}
which can then simply be used as such:
rdd.flatten