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

Get spark.default.paralellism on each call to defaultPartitioner,

instead of only once, in case the user changes it across Spark uses
parent d6e6abec
No related branches found
No related tags found
No related merge requests found
......@@ -10,9 +10,6 @@ abstract class Partitioner extends Serializable {
}
object Partitioner {
private val useDefaultParallelism = System.getProperty("spark.default.parallelism") != null
/**
* Choose a partitioner to use for a cogroup-like operation between a number of RDDs.
*
......@@ -33,7 +30,7 @@ object Partitioner {
for (r <- bySize if r.partitioner != None) {
return r.partitioner.get
}
if (useDefaultParallelism) {
if (System.getProperty("spark.default.parallelism") != null) {
return new HashPartitioner(rdd.context.defaultParallelism)
} else {
return new HashPartitioner(bySize.head.partitions.size)
......
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