spark-instrumented-optimizer/core/src/main/scala/spark/Partitioner.scala

83 lines
2.1 KiB
Scala
Raw Normal View History

2011-02-27 22:15:52 -05:00
package spark
abstract class Partitioner extends Serializable {
2011-02-27 22:15:52 -05:00
def numPartitions: Int
2011-03-07 02:38:16 -05:00
def getPartition(key: Any): Int
2011-02-27 22:15:52 -05:00
}
2011-03-07 02:38:16 -05:00
class HashPartitioner(partitions: Int) extends Partitioner {
2011-02-27 22:15:52 -05:00
def numPartitions = partitions
def getPartition(key: Any): Int = {
if (key == null) {
return 0
2012-02-10 11:19:53 -05:00
} else {
val mod = key.hashCode % partitions
if (mod < 0) {
mod + partitions
} else {
mod // Guard against negative hash codes
}
2012-02-10 11:19:53 -05:00
}
2011-02-27 22:15:52 -05:00
}
override def equals(other: Any): Boolean = other match {
2011-03-07 02:38:16 -05:00
case h: HashPartitioner =>
2011-02-27 22:15:52 -05:00
h.numPartitions == numPartitions
2012-02-10 11:19:53 -05:00
case _ =>
false
2011-02-27 22:15:52 -05:00
}
2012-02-11 03:56:28 -05:00
}
class RangePartitioner[K <% Ordered[K]: ClassManifest, V](
partitions: Int,
@transient rdd: RDD[(K,V)],
private val ascending: Boolean = true)
2012-02-11 03:56:28 -05:00
extends Partitioner {
// An array of upper bounds for the first (partitions - 1) partitions
private val rangeBounds: Array[K] = {
if (partitions == 1) {
Array()
} else {
val rddSize = rdd.count()
val maxSampleSize = partitions * 10.0
val frac = math.min(maxSampleSize / math.max(rddSize, 1), 1.0)
val rddSample = rdd.sample(true, frac, 1).map(_._1).collect().sortWith(_ < _)
if (rddSample.length == 0) {
Array()
} else {
val bounds = new Array[K](partitions - 1)
for (i <- 0 until partitions - 1) {
val index = (rddSample.length - 1) * (i + 1) / partitions
bounds(i) = rddSample(index)
}
bounds
}
}
}
def numPartitions = partitions
2012-02-11 03:56:28 -05:00
def getPartition(key: Any): Int = {
// TODO: Use a binary search here if number of partitions is large
2012-02-13 03:07:39 -05:00
val k = key.asInstanceOf[K]
var partition = 0
while (partition < rangeBounds.length && k > rangeBounds(partition)) {
partition += 1
}
if (ascending) {
partition
} else {
rangeBounds.length - partition
}
2012-02-11 03:56:28 -05:00
}
override def equals(other: Any): Boolean = other match {
2012-02-13 03:07:39 -05:00
case r: RangePartitioner[_,_] =>
r.rangeBounds.sameElements(rangeBounds) && r.ascending == ascending
case _ =>
false
2012-02-11 03:56:28 -05:00
}
}