class SCollectionWithHotKeyFanout[K, V] extends TransformNameable
An enhanced SCollection that uses an intermediate node to combine "hot" keys partially before performing the full combine.
- Alphabetic
- By Inheritance
- SCollectionWithHotKeyFanout
- TransformNameable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def aggregateByKey[A, U](aggregator: MonoidAggregator[V, A, U])(implicit arg0: Coder[A], arg1: Coder[U]): SCollection[(K, U)]
PairSCollectionFunctions.aggregateByKey with hot key fanout.
- def aggregateByKey[A, U](aggregator: Aggregator[V, A, U])(implicit arg0: Coder[A], arg1: Coder[U]): SCollection[(K, U)]
PairSCollectionFunctions.aggregateByKey with hot key fanout.
- def aggregateByKey[U](zeroValue: U)(seqOp: (U, V) => U, combOp: (U, U) => U)(implicit arg0: Coder[U]): SCollection[(K, U)]
PairSCollectionFunctions.aggregateByKey with hot key fanout.
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def combineByKey[C](createCombiner: (V) => C)(mergeValue: (C, V) => C)(mergeCombiners: (C, C) => C)(implicit arg0: Coder[C]): SCollection[(K, C)]
PairSCollectionFunctions.combineByKey with hot key fanout.
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def foldByKey(implicit mon: Monoid[V]): SCollection[(K, V)]
PairSCollectionFunctions.foldByKey with hot key fanout.
- def foldByKey(zeroValue: V)(op: (V, V) => V): SCollection[(K, V)]
PairSCollectionFunctions.foldByKey with hot key fanout.
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def latestByKey: SCollection[(K, V)]
SCollection.latest with hot key fan out.
- def maxByKey(implicit ord: Ordering[V]): SCollection[(K, V)]
SCollection.max with hot key fan out.
- def meanByKey(implicit ev: Numeric[V]): SCollection[(K, Double)]
SCollection.mean with hot key fan out.
- def minByKey(implicit ord: Ordering[V]): SCollection[(K, V)]
SCollection.min with hot key fan out.
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def reduceByKey(op: (V, V) => V): SCollection[(K, V)]
PairSCollectionFunctions.reduceByKey with hot key fanout.
- def sumByKey(implicit sg: Semigroup[V]): SCollection[(K, V)]
PairSCollectionFunctions.sumByKey with hot key fanout.
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- def topByKey(num: Int)(implicit ord: Ordering[V]): SCollection[(K, Iterable[V])]
PairSCollectionFunctions.topByKey with hot key fanout.
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def withName(name: String): SCollectionWithHotKeyFanout.this.type
Set a custom name for the next transform to be applied.
Set a custom name for the next transform to be applied.
- Definition Classes
- SCollectionWithHotKeyFanout → TransformNameable