org.apache.spark.rdd.mergejoin.MergeJoin

InnerJoin

class InnerJoin[K, V, W] extends SpillableJoiner[K, V, W, (K, (V, W))]

Linear Supertypes
SpillableJoiner[K, V, W, (K, (V, W))], Logging, Joiner[K, V, W, (K, (V, W))], Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. InnerJoin
  2. SpillableJoiner
  3. Logging
  4. Joiner
  5. Serializable
  6. Serializable
  7. AnyRef
  8. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new InnerJoin(context: TaskContext, serializer: Option[Serializer] = scala.None)

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

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

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def closeKey(): Unit

    Called after all values for a key has been emitted.

    Called after all values for a key has been emitted.

    This will be called after each 'inner' key join, and once more on task completion to ensure we cleanup any intermediate spill files and release memory back to the executor when we are done with this key.

    Attributes
    protected
    Definition Classes
    SpillableJoiner
  9. var currentKey: K

    Attributes
    protected
    Definition Classes
    SpillableJoiner
  10. var currentSpillable: ExternalSorter[Int, W, W]

    Attributes
    protected
    Definition Classes
    SpillableJoiner
  11. def emit(key: K, left: V, right: W): (K, (V, W))

    key

    key value to emit

    left

    left value to emit

    right

    right value to emit

    returns

    output value for a single row, eg: (K, (V, W)) or (K, (V, Option[W]))

    Definition Classes
    InnerJoinSpillableJoiner
  12. final def eq(arg0: AnyRef): Boolean

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

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

    Definition Classes
    SpillableJoiner → AnyRef
  15. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  16. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  17. val includeSpillMetrics: Boolean

    Attributes
    protected
    Definition Classes
    SpillableJoiner
  18. def initializeLogIfNecessary(isInterpreter: Boolean): Unit

    Attributes
    protected
    Definition Classes
    Logging
  19. def inner(key: K, left: Iterator[V], right: Iterator[W]): Iterator[(K, (V, W))]

    Emit both left and right values for the given key

    Emit both left and right values for the given key

    Definition Classes
    SpillableJoinerJoiner
  20. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  21. def isTraceEnabled(): Boolean

    Attributes
    protected
    Definition Classes
    Logging
  22. def leftOuter(itr: Iterator[(K, V)]): Iterator[(K, (V, W))]

    Emit values for left-side only key

    Emit values for left-side only key

    Definition Classes
    InnerJoinJoiner
  23. def log: Logger

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

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

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

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

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

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

    Attributes
    protected
    Definition Classes
    Logging
  30. def logName: String

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

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

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

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

    Attributes
    protected
    Definition Classes
    Logging
  35. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  38. def rightOuter(itr: Iterator[(K, W)]): Iterator[(K, (V, W))]

    Emit values for right-side only key

    Emit values for right-side only key

    Definition Classes
    InnerJoinJoiner
  39. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  40. def toString(): String

    Definition Classes
    AnyRef → Any
  41. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from SpillableJoiner[K, V, W, (K, (V, W))]

Inherited from Logging

Inherited from Joiner[K, V, W, (K, (V, W))]

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped