Class

com.datawizards.sparklocal.impl.scala.parallel.rdd

PairRDDFunctionsAPIScalaParallelImpl

Related Doc: package rdd

Permalink

class PairRDDFunctionsAPIScalaParallelImpl[K, V] extends PairRDDFunctionsAPIScalaBase[K, V]

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PairRDDFunctionsAPIScalaParallelImpl
  2. PairRDDFunctionsAPIScalaBase
  3. PairRDDFunctionsAPI
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new PairRDDFunctionsAPIScalaParallelImpl(rdd: RDDAPIScalaParallelImpl[(K, V)])(implicit kct: ClassTag[K], vct: ClassTag[V], ord: Ordering[K] = null)

    Permalink

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def aggregateByKey[U](zeroValue: U, numPartitions: Int)(seqOp: (U, V) ⇒ U, combOp: (U, U) ⇒ U)(implicit arg0: ClassTag[U]): RDDAPI[(K, U)]

    Permalink
  5. def aggregateByKey[U](zeroValue: U, partitioner: Partitioner)(seqOp: (U, V) ⇒ U, combOp: (U, U) ⇒ U)(implicit arg0: ClassTag[U]): RDDAPI[(K, U)]

    Permalink
  6. def aggregateByKey[U](zeroValue: U)(seqOp: (U, V) ⇒ U, combOp: (U, U) ⇒ U)(implicit arg0: ClassTag[U]): RDDAPI[(K, U)]

    Permalink
  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def cogroup[W1, W2, W3](other1: RDDAPI[(K, W1)], other2: RDDAPI[(K, W2)], other3: RDDAPI[(K, W3)], numPartitions: Int)(implicit arg0: ClassTag[W1], arg1: ClassTag[W2], arg2: ClassTag[W3]): RDDAPI[(K, (GenIterable[V], GenIterable[W1], GenIterable[W2], GenIterable[W3]))]

    Permalink
  10. def cogroup[W1, W2](other1: RDDAPI[(K, W1)], other2: RDDAPI[(K, W2)], numPartitions: Int)(implicit arg0: ClassTag[W1], arg1: ClassTag[W2]): RDDAPI[(K, (GenIterable[V], GenIterable[W1], GenIterable[W2]))]

    Permalink
  11. def cogroup[W](other: RDDAPI[(K, W)], numPartitions: Int)(implicit arg0: ClassTag[W]): RDDAPI[(K, (GenIterable[V], GenIterable[W]))]

    Permalink
  12. def cogroup[W1, W2](other1: RDDAPI[(K, W1)], other2: RDDAPI[(K, W2)])(implicit arg0: ClassTag[W1], arg1: ClassTag[W2]): RDDAPI[(K, (GenIterable[V], GenIterable[W1], GenIterable[W2]))]

    Permalink
  13. def cogroup[W](other: RDDAPI[(K, W)])(implicit arg0: ClassTag[W]): RDDAPI[(K, (GenIterable[V], GenIterable[W]))]

    Permalink
  14. def cogroup[W1, W2, W3](other1: RDDAPI[(K, W1)], other2: RDDAPI[(K, W2)], other3: RDDAPI[(K, W3)])(implicit arg0: ClassTag[W1], arg1: ClassTag[W2], arg2: ClassTag[W3]): RDDAPI[(K, (GenIterable[V], GenIterable[W1], GenIterable[W2], GenIterable[W3]))]

    Permalink
  15. def cogroup[W1, W2](other1: RDDAPI[(K, W1)], other2: RDDAPI[(K, W2)], partitioner: Partitioner)(implicit arg0: ClassTag[W1], arg1: ClassTag[W2]): RDDAPI[(K, (GenIterable[V], GenIterable[W1], GenIterable[W2]))]

    Permalink
  16. def cogroup[W](other: RDDAPI[(K, W)], partitioner: Partitioner)(implicit arg0: ClassTag[W]): RDDAPI[(K, (GenIterable[V], GenIterable[W]))]

    Permalink
  17. def cogroup[W1, W2, W3](other1: RDDAPI[(K, W1)], other2: RDDAPI[(K, W2)], other3: RDDAPI[(K, W3)], partitioner: Partitioner)(implicit arg0: ClassTag[W1], arg1: ClassTag[W2], arg2: ClassTag[W3]): RDDAPI[(K, (GenIterable[V], GenIterable[W1], GenIterable[W2], GenIterable[W3]))]

    Permalink
  18. def collectAsMap(): GenMap[K, V]

    Permalink
  19. def countByKey(): GenMap[K, Long]

    Permalink
  20. def create[U](data: GenIterable[U])(implicit arg0: ClassTag[U]): RDDAPIScalaBase[U]

    Permalink
    Attributes
    protected
    Definition Classes
    PairRDDFunctionsAPIScalaParallelImplPairRDDFunctionsAPIScalaBase
  21. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  23. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  24. def flatMapValues[U](f: (V) ⇒ TraversableOnce[U])(implicit arg0: ClassTag[U]): RDDAPI[(K, U)]

    Permalink
  25. def foldByKey(zeroValue: V, partitioner: Partitioner)(func: (V, V) ⇒ V): RDDAPI[(K, V)]

    Permalink
  26. def foldByKey(zeroValue: V, numPartitions: Int)(func: (V, V) ⇒ V): RDDAPI[(K, V)]

    Permalink
  27. def foldByKey(zeroValue: V)(func: (V, V) ⇒ V): RDDAPI[(K, V)]

    Permalink
  28. def fullOuterJoin[W](other: RDDAPI[(K, W)], partitioner: Partitioner)(implicit arg0: ClassTag[W]): RDDAPI[(K, (Option[V], Option[W]))]

    Permalink
  29. def fullOuterJoin[W](other: RDDAPI[(K, W)], numPartitions: Int)(implicit arg0: ClassTag[W]): RDDAPI[(K, (Option[V], Option[W]))]

    Permalink
  30. def fullOuterJoin[W](other: RDDAPI[(K, W)])(implicit arg0: ClassTag[W]): RDDAPI[(K, (Option[V], Option[W]))]

    Permalink
  31. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  32. def groupByKey(partitioner: Partitioner): RDDAPI[(K, GenIterable[V])]

    Permalink
  33. def groupByKey(numPartitions: Int): RDDAPI[(K, GenIterable[V])]

    Permalink
  34. def groupByKey(): RDDAPI[(K, GenIterable[V])]

    Permalink
  35. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  36. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  37. def join[W](other: RDDAPI[(K, W)], partitioner: Partitioner)(implicit arg0: ClassTag[W]): RDDAPI[(K, (V, W))]

    Permalink
  38. def join[W](other: RDDAPI[(K, W)], numPartitions: Int)(implicit arg0: ClassTag[W]): RDDAPI[(K, (V, W))]

    Permalink
  39. def join[W](other: RDDAPI[(K, W)])(implicit arg0: ClassTag[W]): RDDAPI[(K, (V, W))]

    Permalink
  40. def keys: RDDAPI[K]

    Permalink
  41. def leftOuterJoin[W](other: RDDAPI[(K, W)], partitioner: Partitioner)(implicit arg0: ClassTag[W]): RDDAPI[(K, (V, Option[W]))]

    Permalink
  42. def leftOuterJoin[W](other: RDDAPI[(K, W)], numPartitions: Int)(implicit arg0: ClassTag[W]): RDDAPI[(K, (V, Option[W]))]

    Permalink
  43. def leftOuterJoin[W](other: RDDAPI[(K, W)])(implicit arg0: ClassTag[W]): RDDAPI[(K, (V, Option[W]))]

    Permalink
  44. def mapValues[U](f: (V) ⇒ U)(implicit arg0: ClassTag[U]): RDDAPI[(K, U)]

    Permalink
  45. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  46. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  47. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  48. def parallelize[That](d: GenIterable[That])(implicit arg0: ClassTag[That]): RDD[That]

    Permalink
    Attributes
    protected
    Definition Classes
    PairRDDFunctionsAPI
  49. def parallelize[That](d: Seq[That])(implicit arg0: ClassTag[That]): RDD[That]

    Permalink
    Attributes
    protected
    Definition Classes
    PairRDDFunctionsAPI
  50. def partitionBy(partitioner: Partitioner): RDDAPI[(K, V)]

    Permalink
  51. val rdd: RDDAPIScalaParallelImpl[(K, V)]

    Permalink
    Attributes
    protected
    Definition Classes
    PairRDDFunctionsAPIScalaParallelImplPairRDDFunctionsAPIScalaBase
  52. def reduceByKey(partitioner: Partitioner, func: (V, V) ⇒ V): RDDAPI[(K, V)]

    Permalink
  53. def reduceByKey(func: (V, V) ⇒ V, numPartitions: Int): RDDAPI[(K, V)]

    Permalink
  54. def reduceByKey(func: (V, V) ⇒ V): RDDAPI[(K, V)]

    Permalink
  55. def reduceByKeyLocally(func: (V, V) ⇒ V): Map[K, V]

    Permalink
  56. def rightOuterJoin[W](other: RDDAPI[(K, W)], partitioner: Partitioner)(implicit arg0: ClassTag[W]): RDDAPI[(K, (Option[V], W))]

    Permalink
  57. def rightOuterJoin[W](other: RDDAPI[(K, W)], numPartitions: Int)(implicit arg0: ClassTag[W]): RDDAPI[(K, (Option[V], W))]

    Permalink
  58. def rightOuterJoin[W](other: RDDAPI[(K, W)])(implicit arg0: ClassTag[W]): RDDAPI[(K, (Option[V], W))]

    Permalink
  59. lazy val spark: SparkSession

    Permalink
    Attributes
    protected
    Definition Classes
    PairRDDFunctionsAPI
  60. def subtractByKey[W](other: RDDAPI[(K, W)], p: Partitioner)(implicit arg0: ClassTag[W]): RDDAPI[(K, V)]

    Permalink
  61. def subtractByKey[W](other: RDDAPI[(K, W)], numPartitions: Int)(implicit arg0: ClassTag[W]): RDDAPI[(K, V)]

    Permalink
  62. def subtractByKey[W](other: RDDAPI[(K, W)])(implicit arg0: ClassTag[W]): RDDAPI[(K, V)]

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

    Permalink
    Definition Classes
    AnyRef
  64. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  65. def values: RDDAPI[V]

    Permalink
  66. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from PairRDDFunctionsAPIScalaBase[K, V]

Inherited from PairRDDFunctionsAPI[K, V]

Inherited from AnyRef

Inherited from Any

Ungrouped