object Partitioner
An object to hold classes that extend the [Partitioner] trait.
- Alphabetic
- By Inheritance
- Partitioner
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
final
case class
Float32(key: String) extends NumericPartitioner[Float] with Product with Serializable
Partition a Record on its
keyfield which contains a 32-bit floating point value. -
final
case class
Float64(key: String) extends NumericPartitioner[Double] with Product with Serializable
Partition a Record on its
keyfield which contains a 64-bit floating point value. -
final
case class
Int16(key: String) extends NumericPartitioner[Int] with Product with Serializable
Partition a Record on its
keyfield which contains a signed 16-bit value. -
final
case class
Int32(key: String) extends NumericPartitioner[Long] with Product with Serializable
Partition a Record on its
keyfield which contains a signed 32-bit value. -
final
case class
Int64(key: String) extends NumericPartitioner[Long] with Product with Serializable
Partition a Record on its
keyfield which contains a signed 64-bit value. -
final
case class
Int8(key: String) extends NumericPartitioner[Short] with Product with Serializable
Partition a Record on its
keyfield which contains a signed 8-bit value. -
sealed abstract
class
NumericPartitioner[T] extends Partitioner with StrictLogging
NumericPartitioner supports partitioning based on the numeric field named
keyin a Record, where each partition represents records where that field either has a specific (single) value or falls with a range of values.NumericPartitioner supports partitioning based on the numeric field named
keyin a Record, where each partition represents records where that field either has a specific (single) value or falls with a range of values.NumericPartitioner is the parent class of other classes for specific numeric types (such as 16-bit integers and 32-bit floating point numbers). These subclasses must specify a numeric type and the allowable range of values for that type.
- T
The type of the number
-
final
case class
UInt16(key: String) extends NumericPartitioner[Int] with Product with Serializable
Partition a Record on its
keyfield which contains an unsigned 16-bit value. -
final
case class
UInt32(key: String) extends NumericPartitioner[Long] with Product with Serializable
Partition a Record on its
keyfield which contains an unsigned 32-bit value. -
final
case class
UInt64(key: String) extends NumericPartitioner[Long] with Product with Serializable
Partition a Record on its
keyfield which contains an unsigned 64-bit value. -
final
case class
UInt8(key: String) extends NumericPartitioner[Short] with Product with Serializable
Partition a Record on its
keyfield which contains an unsigned 8-bit value. - case class UniqueValue[T](key: String) extends Partitioner with Product with Serializable
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()