Packages

object Partitioner

An object to hold classes that extend the [Partitioner] trait.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Partitioner
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. final case class Float32(key: String) extends NumericPartitioner[Float] with Product with Serializable

    Partition a Record on its key field which contains a 32-bit floating point value.

  2. final case class Float64(key: String) extends NumericPartitioner[Double] with Product with Serializable

    Partition a Record on its key field which contains a 64-bit floating point value.

  3. final case class Int16(key: String) extends NumericPartitioner[Int] with Product with Serializable

    Partition a Record on its key field which contains a signed 16-bit value.

  4. final case class Int32(key: String) extends NumericPartitioner[Long] with Product with Serializable

    Partition a Record on its key field which contains a signed 32-bit value.

  5. final case class Int64(key: String) extends NumericPartitioner[Long] with Product with Serializable

    Partition a Record on its key field which contains a signed 64-bit value.

  6. final case class Int8(key: String) extends NumericPartitioner[Short] with Product with Serializable

    Partition a Record on its key field which contains a signed 8-bit value.

  7. sealed abstract class NumericPartitioner[T] extends Partitioner with StrictLogging

    NumericPartitioner supports partitioning based on the numeric field named key in 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 key in 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

  8. final case class UInt16(key: String) extends NumericPartitioner[Int] with Product with Serializable

    Partition a Record on its key field which contains an unsigned 16-bit value.

  9. final case class UInt32(key: String) extends NumericPartitioner[Long] with Product with Serializable

    Partition a Record on its key field which contains an unsigned 32-bit value.

  10. final case class UInt64(key: String) extends NumericPartitioner[Long] with Product with Serializable

    Partition a Record on its key field which contains an unsigned 64-bit value.

  11. final case class UInt8(key: String) extends NumericPartitioner[Short] with Product with Serializable

    Partition a Record on its key field which contains an unsigned 8-bit value.

  12. case class UniqueValue[T](key: String) extends Partitioner with Product with Serializable

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped