Skip to content
Snippets Groups Projects
Commit a3e86b2b authored by Matei Zaharia's avatar Matei Zaharia
Browse files

Merge pull request #483 from rxin/splitpruningrdd2

Added a method to create PartitionPruningRDD.
parents 03d84799 130f704b
No related branches found
No related tags found
No related merge requests found
......@@ -40,3 +40,15 @@ class PartitionPruningRDD[T: ClassManifest](
override protected def getPartitions: Array[Partition] =
getDependencies.head.asInstanceOf[PruneDependency[T]].partitions
}
object PartitionPruningRDD {
/**
* Create a PartitionPruningRDD. This function can be used to create the PartitionPruningRDD
* when its type T is not known at compile time.
*/
def create[T](rdd: RDD[T], partitionFilterFunc: Int => Boolean) = {
new PartitionPruningRDD[T](rdd, partitionFilterFunc)(rdd.elementClassManifest)
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment