Class

com.datawizards.sparklocal.impl.scala.rdd

PairRDDFunctionsAPIScalaBase

Related Doc: package rdd

Permalink

abstract class PairRDDFunctionsAPIScalaBase[K, V] extends PairRDDFunctionsAPI[K, V]

Linear Supertypes
PairRDDFunctionsAPI[K, V], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PairRDDFunctionsAPIScalaBase
  2. PairRDDFunctionsAPI
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

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

    Permalink

Abstract Value Members

  1. abstract def create[U](data: GenIterable[U])(implicit arg0: ClassTag[U]): RDDAPIScalaBase[U]

    Permalink
    Attributes
    protected
  2. abstract val rdd: RDDAPIScalaBase[(K, V)]

    Permalink
    Attributes
    protected

Concrete 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. final def eq(arg0: AnyRef): Boolean

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

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

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

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

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

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

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

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

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

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

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

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

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

    Permalink
  34. def hashCode(): Int

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

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

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

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

    Permalink
  39. def keys: RDDAPI[K]

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

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

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

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

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

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

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

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

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

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

    Permalink
  50. def reduceByKey(partitioner: Partitioner, func: (V, V) ⇒ V): RDDAPI[(K, V)]

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

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

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

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

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

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

    Permalink
  57. lazy val spark: SparkSession

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

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

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

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

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

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

    Permalink
  64. final def wait(): Unit

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

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

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

Inherited from PairRDDFunctionsAPI[K, V]

Inherited from AnyRef

Inherited from Any

Ungrouped