spark.rdd

CoGroupedRDD

class CoGroupedRDD[K] extends RDD[(K, Seq[Seq[_]])] with Logging

Linear Supertypes
Logging, RDD[(K, Seq[Seq[_]])], Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. CoGroupedRDD
  2. Logging
  3. RDD
  4. Serializable
  5. Serializable
  6. AnyRef
  7. Any
Visibility
  1. Public
  2. All

Instance Constructors

  1. new CoGroupedRDD(rdds: Seq[RDD[Tuple2[_, _]]], part: Partitioner)

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def ++(other: RDD[(K, Seq[Seq[_]])]): RDD[(K, Seq[Seq[_]])]

    Return the union of this RDD and another one.

    Return the union of this RDD and another one. Any identical elements will appear multiple times (use .distinct() to eliminate them).

    Definition Classes
    RDD
  5. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  6. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  7. val aggr: CoGroupAggregator

  8. def aggregate[U](zeroValue: U)(seqOp: (U, (K, Seq[Seq[_]])) ⇒ U, combOp: (U, U) ⇒ U)(implicit arg0: ClassManifest[U]): U

    Aggregate the elements of each partition, and then the results for all the partitions, using given combine functions and a neutral "zero value".

    Aggregate the elements of each partition, and then the results for all the partitions, using given combine functions and a neutral "zero value". This function can return a different result type, U, than the type of this RDD, T. Thus, we need one operation for merging a T into an U and one operation for merging two U's, as in scala.TraversableOnce. Both of these functions are allowed to modify and return their first argument instead of creating a new U to avoid memory allocation.

    Definition Classes
    RDD
  9. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  10. def cache(): RDD[(K, Seq[Seq[_]])]

    Persist this RDD with the default storage level (MEMORY_ONLY).

    Persist this RDD with the default storage level (MEMORY_ONLY).

    Definition Classes
    RDD
  11. def cartesian[U](other: RDD[U])(implicit arg0: ClassManifest[U]): RDD[((K, Seq[Seq[_]]), U)]

    Return the Cartesian product of this RDD and another one, that is, the RDD of all pairs of elements (a, b) where a is in this and b is in other.

    Return the Cartesian product of this RDD and another one, that is, the RDD of all pairs of elements (a, b) where a is in this and b is in other.

    Definition Classes
    RDD
  12. def clone(): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  13. def collect(): Array[(K, Seq[Seq[_]])]

    Return an array that contains all of the elements in this RDD.

    Return an array that contains all of the elements in this RDD.

    Definition Classes
    RDD
  14. def compute(s: Split): Iterator[(K, Seq[Seq[_]])]

    Function for computing a given partition.

    Function for computing a given partition.

    Definition Classes
    CoGroupedRDDRDD
  15. def context: SparkContext

    The SparkContext that this RDD was created on.

    The SparkContext that this RDD was created on.

    Definition Classes
    RDD
  16. def count(): Long

    Return the number of elements in the RDD.

    Return the number of elements in the RDD.

    Definition Classes
    RDD
  17. def countApprox(timeout: Long, confidence: Double = 0.95): PartialResult[BoundedDouble]

    (Experimental) Approximate version of count() that returns a potentially incomplete result within a timeout, even if not all tasks have finished.

    (Experimental) Approximate version of count() that returns a potentially incomplete result within a timeout, even if not all tasks have finished.

    Definition Classes
    RDD
  18. def countByValue(): Map[(K, Seq[Seq[_]]), Long]

    Return the count of each unique value in this RDD as a map of (value, count) pairs.

    Return the count of each unique value in this RDD as a map of (value, count) pairs. The final combine step happens locally on the master, equivalent to running a single reduce task.

    Definition Classes
    RDD
  19. def countByValueApprox(timeout: Long, confidence: Double = 0.95): PartialResult[Map[(K, Seq[Seq[_]]), BoundedDouble]]

    (Experimental) Approximate version of countByValue().

    (Experimental) Approximate version of countByValue().

    Definition Classes
    RDD
  20. val dependencies: List[spark.Dependency[_]]

    How this RDD depends on any parent RDDs.

    How this RDD depends on any parent RDDs.

    Definition Classes
    CoGroupedRDDRDD
  21. def distinct(numSplits: Int = splits.size): RDD[(K, Seq[Seq[_]])]

    Return a new RDD containing the distinct elements in this RDD.

    Return a new RDD containing the distinct elements in this RDD.

    Definition Classes
    RDD
  22. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  23. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  24. def filter(f: ((K, Seq[Seq[_]])) ⇒ Boolean): RDD[(K, Seq[Seq[_]])]

    Return a new RDD containing only the elements that satisfy a predicate.

    Return a new RDD containing only the elements that satisfy a predicate.

    Definition Classes
    RDD
  25. def finalize(): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  26. def first(): (K, Seq[Seq[_]])

    Return the first element in this RDD.

    Return the first element in this RDD.

    Definition Classes
    RDD
  27. def flatMap[U](f: ((K, Seq[Seq[_]])) ⇒ TraversableOnce[U])(implicit arg0: ClassManifest[U]): RDD[U]

    Return a new RDD by first applying a function to all elements of this RDD, and then flattening the results.

    Return a new RDD by first applying a function to all elements of this RDD, and then flattening the results.

    Definition Classes
    RDD
  28. def fold(zeroValue: (K, Seq[Seq[_]]))(op: ((K, Seq[Seq[_]]), (K, Seq[Seq[_]])) ⇒ (K, Seq[Seq[_]])): (K, Seq[Seq[_]])

    Aggregate the elements of each partition, and then the results for all the partitions, using a given associative function and a neutral "zero value".

    Aggregate the elements of each partition, and then the results for all the partitions, using a given associative function and a neutral "zero value". The function op(t1, t2) is allowed to modify t1 and return it as its result value to avoid object allocation; however, it should not modify t2.

    Definition Classes
    RDD
  29. def foreach(f: ((K, Seq[Seq[_]])) ⇒ Unit): Unit

    Applies a function f to all elements of this RDD.

    Applies a function f to all elements of this RDD.

    Definition Classes
    RDD
  30. final def getClass(): java.lang.Class[_]

    Definition Classes
    AnyRef → Any
  31. def getStorageLevel: StorageLevel

    Get the RDD's current storage level, or StorageLevel.

    Get the RDD's current storage level, or StorageLevel.NONE if none is set.

    Definition Classes
    RDD
  32. def glom(): RDD[Array[(K, Seq[Seq[_]])]]

    Return an RDD created by coalescing all elements within each partition into an array.

    Return an RDD created by coalescing all elements within each partition into an array.

    Definition Classes
    RDD
  33. def groupBy[K](f: ((K, Seq[Seq[_]])) ⇒ K)(implicit arg0: ClassManifest[K]): RDD[(K, Seq[(K, Seq[Seq[_]])])]

    Return an RDD of grouped items.

    Return an RDD of grouped items.

    Definition Classes
    RDD
  34. def groupBy[K](f: ((K, Seq[Seq[_]])) ⇒ K, numSplits: Int)(implicit arg0: ClassManifest[K]): RDD[(K, Seq[(K, Seq[Seq[_]])])]

    Return an RDD of grouped elements.

    Return an RDD of grouped elements. Each group consists of a key and a sequence of elements mapping to that key.

    Definition Classes
    RDD
  35. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  36. val id: Int

    A unique ID for this RDD (within its SparkContext).

    A unique ID for this RDD (within its SparkContext).

    Definition Classes
    RDD
  37. def initLogging(): Unit

    Attributes
    protected
    Definition Classes
    Logging
  38. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  39. final def iterator(split: Split): Iterator[(K, Seq[Seq[_]])]

    Internal method to this RDD; will read from cache if applicable, or otherwise compute it.

    Internal method to this RDD; will read from cache if applicable, or otherwise compute it. This should not be called by users directly, but is available for implementors of custom subclasses of RDD.

    Definition Classes
    RDD
  40. def log: Logger

    Attributes
    protected
    Definition Classes
    Logging
  41. def logDebug(msg: ⇒ String, throwable: Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  42. def logDebug(msg: ⇒ String): Unit

    Attributes
    protected
    Definition Classes
    Logging
  43. def logError(msg: ⇒ String, throwable: Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  44. def logError(msg: ⇒ String): Unit

    Attributes
    protected
    Definition Classes
    Logging
  45. def logInfo(msg: ⇒ String, throwable: Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  46. def logInfo(msg: ⇒ String): Unit

    Attributes
    protected
    Definition Classes
    Logging
  47. def logTrace(msg: ⇒ String, throwable: Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  48. def logTrace(msg: ⇒ String): Unit

    Attributes
    protected
    Definition Classes
    Logging
  49. def logWarning(msg: ⇒ String, throwable: Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  50. def logWarning(msg: ⇒ String): Unit

    Attributes
    protected
    Definition Classes
    Logging
  51. def map[U](f: ((K, Seq[Seq[_]])) ⇒ U)(implicit arg0: ClassManifest[U]): RDD[U]

    Return a new RDD by applying a function to all elements of this RDD.

    Return a new RDD by applying a function to all elements of this RDD.

    Definition Classes
    RDD
  52. def mapPartitions[U](f: (Iterator[(K, Seq[Seq[_]])]) ⇒ Iterator[U])(implicit arg0: ClassManifest[U]): RDD[U]

    Return a new RDD by applying a function to each partition of this RDD.

    Return a new RDD by applying a function to each partition of this RDD.

    Definition Classes
    RDD
  53. def mapPartitionsWithSplit[U](f: (Int, Iterator[(K, Seq[Seq[_]])]) ⇒ Iterator[U])(implicit arg0: ClassManifest[U]): RDD[U]

    Return a new RDD by applying a function to each partition of this RDD, while tracking the index of the original partition.

    Return a new RDD by applying a function to each partition of this RDD, while tracking the index of the original partition.

    Definition Classes
    RDD
  54. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  55. final def notify(): Unit

    Definition Classes
    AnyRef
  56. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  57. val partitioner: Some[Partitioner]

    Optionally overridden by subclasses to specify how they are partitioned.

    Optionally overridden by subclasses to specify how they are partitioned.

    Definition Classes
    CoGroupedRDDRDD
  58. def persist(): RDD[(K, Seq[Seq[_]])]

    Persist this RDD with the default storage level (MEMORY_ONLY).

    Persist this RDD with the default storage level (MEMORY_ONLY).

    Definition Classes
    RDD
  59. def persist(newLevel: StorageLevel): RDD[(K, Seq[Seq[_]])]

    Set this RDD's storage level to persist its values across operations after the first time it is computed.

    Set this RDD's storage level to persist its values across operations after the first time it is computed. Can only be called once on each RDD.

    Definition Classes
    RDD
  60. def pipe(command: Seq[String], env: Map[String, String]): RDD[String]

    Return an RDD created by piping elements to a forked external process.

    Return an RDD created by piping elements to a forked external process.

    Definition Classes
    RDD
  61. def pipe(command: Seq[String]): RDD[String]

    Return an RDD created by piping elements to a forked external process.

    Return an RDD created by piping elements to a forked external process.

    Definition Classes
    RDD
  62. def pipe(command: String): RDD[String]

    Return an RDD created by piping elements to a forked external process.

    Return an RDD created by piping elements to a forked external process.

    Definition Classes
    RDD
  63. def preferredLocations(s: Split): scala.collection.immutable.Nil.type

    Optionally overridden by subclasses to specify placement preferences.

    Optionally overridden by subclasses to specify placement preferences.

    Definition Classes
    CoGroupedRDDRDD
  64. def reduce(f: ((K, Seq[Seq[_]]), (K, Seq[Seq[_]])) ⇒ (K, Seq[Seq[_]])): (K, Seq[Seq[_]])

    Reduces the elements of this RDD using the specified associative binary operator.

    Reduces the elements of this RDD using the specified associative binary operator.

    Definition Classes
    RDD
  65. def sample(withReplacement: Boolean, fraction: Double, seed: Int): RDD[(K, Seq[Seq[_]])]

    Return a sampled subset of this RDD.

    Return a sampled subset of this RDD.

    Definition Classes
    RDD
  66. def saveAsObjectFile(path: String): Unit

    Save this RDD as a SequenceFile of serialized objects.

    Save this RDD as a SequenceFile of serialized objects.

    Definition Classes
    RDD
  67. def saveAsTextFile(path: String): Unit

    Save this RDD as a text file, using string representations of elements.

    Save this RDD as a text file, using string representations of elements.

    Definition Classes
    RDD
  68. def splits: Array[Split]

    Set of partitions in this RDD.

    Set of partitions in this RDD.

    Definition Classes
    CoGroupedRDDRDD
  69. val splits_: Array[Split]

  70. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  71. def take(num: Int): Array[(K, Seq[Seq[_]])]

    Take the first num elements of the RDD.

    Take the first num elements of the RDD. This currently scans the partitions *one by one*, so it will be slow if a lot of partitions are required. In that case, use collect() to get the whole RDD instead.

    Definition Classes
    RDD
  72. def takeSample(withReplacement: Boolean, num: Int, seed: Int): Array[(K, Seq[Seq[_]])]

    Definition Classes
    RDD
  73. def toArray(): Array[(K, Seq[Seq[_]])]

    Return an array that contains all of the elements in this RDD.

    Return an array that contains all of the elements in this RDD.

    Definition Classes
    RDD
  74. def toString(): String

    Definition Classes
    AnyRef → Any
  75. def union(other: RDD[(K, Seq[Seq[_]])]): RDD[(K, Seq[Seq[_]])]

    Return the union of this RDD and another one.

    Return the union of this RDD and another one. Any identical elements will appear multiple times (use .distinct() to eliminate them).

    Definition Classes
    RDD
  76. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  77. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  78. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from Logging

Inherited from RDD[(K, Seq[Seq[_]])]

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any