Packages

c

com.here.platform.data.processing.spark.Implicits

PartitionedUnionWrapper

implicit final class PartitionedUnionWrapper extends AnyVal

Linear Supertypes
AnyVal, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PartitionedUnionWrapper
  2. AnyVal
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new PartitionedUnionWrapper(sc: SparkContext)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##(): Int
    Definition Classes
    Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  6. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  7. def partitionedUnion[K, V](rdds: Seq[RDD[(K, V)]], partitioner: Partitioner)(implicit arg0: ClassTag[K], arg1: ClassTag[V]): RDD[(K, V)]

    Build the union of a sequence of partitioned RDDs.

    Build the union of a sequence of partitioned RDDs.

    Same as org.apache.spark.SparkContext.union but checks that all input RDDs are partitioned with the given partitioner and ensures the resulting RDD is partitioned too. If the input sequence is empty, an empty partitioned RDD is returned.

    K

    the type of the keys

    V

    the type of the values

    rdds

    the partitioned RDDs to be union'ed

    partitioner

    the partitioner used for the input and output RDDs

    returns

    the RDD returned by the union operation

  8. val sc: SparkContext
  9. def toString(): String
    Definition Classes
    Any

Inherited from AnyVal

Inherited from Any

Ungrouped