Packages

o

org.apache.spark.sql.execution.streaming

StreamingSymmetricHashJoinHelper

object StreamingSymmetricHashJoinHelper extends Logging

Helper object for StreamingSymmetricHashJoinExec. See that object for more details.

Linear Supertypes
Logging, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StreamingSymmetricHashJoinHelper
  2. Logging
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. case class JoinConditionSplitPredicates(leftSideOnly: Option[Expression], rightSideOnly: Option[Expression], bothSides: Option[Expression], full: Option[Expression]) extends Product with Serializable

    Wrapper around various useful splits of the join condition.

    Wrapper around various useful splits of the join condition. left AND right AND joined is equivalent to full.

    Note that left and right do not necessarily contain *all* conjuncts which satisfy their condition.

    leftSideOnly

    Deterministic conjuncts which reference only the left side of the join.

    rightSideOnly

    Deterministic conjuncts which reference only the right side of the join.

    bothSides

    Conjuncts which are nondeterministic, occur after a nondeterministic conjunct, or reference both left and right sides of the join.

    full

    The full join condition.

  2. sealed trait JoinSide extends AnyRef
  3. case class JoinStateKeyWatermarkPredicate(expr: Expression) extends JoinStateWatermarkPredicate with Product with Serializable

    Predicate for watermark on state keys

  4. case class JoinStateValueWatermarkPredicate(expr: Expression) extends JoinStateWatermarkPredicate with Product with Serializable

    Predicate for watermark on state values

  5. sealed trait JoinStateWatermarkPredicate extends AnyRef
  6. case class JoinStateWatermarkPredicates(left: Option[JoinStateWatermarkPredicate] = None, right: Option[JoinStateWatermarkPredicate] = None) extends Product with Serializable
  7. implicit class StateStoreAwareZipPartitionsHelper[T] extends AnyRef
  8. class StateStoreAwareZipPartitionsRDD[A, B, V] extends ZippedPartitionsBaseRDD[V]

    A custom RDD that allows partitions to be "zipped" together, while ensuring the tasks' preferred location is based on which executors have the required join state stores already loaded.

    A custom RDD that allows partitions to be "zipped" together, while ensuring the tasks' preferred location is based on which executors have the required join state stores already loaded. This class is a variant of org.apache.spark.rdd.ZippedPartitionsRDD2 which only changes signature of f.

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def getStateWatermarkPredicates(leftAttributes: Seq[Attribute], rightAttributes: Seq[Attribute], leftKeys: Seq[Expression], rightKeys: Seq[Expression], condition: Option[Expression], eventTimeWatermark: Option[Long]): JoinStateWatermarkPredicates

    Get the predicates defining the state watermarks for both sides of the join

  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def initializeLogIfNecessary(isInterpreter: Boolean, silent: Boolean): Boolean
    Attributes
    protected
    Definition Classes
    Logging
  13. def initializeLogIfNecessary(isInterpreter: Boolean): Unit
    Attributes
    protected
    Definition Classes
    Logging
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. def isTraceEnabled(): Boolean
    Attributes
    protected
    Definition Classes
    Logging
  16. def log: Logger
    Attributes
    protected
    Definition Classes
    Logging
  17. def logDebug(msg: => String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  18. def logDebug(msg: => String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  19. def logError(msg: => String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  20. def logError(msg: => String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  21. def logInfo(msg: => String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  22. def logInfo(msg: => String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  23. def logName: String
    Attributes
    protected
    Definition Classes
    Logging
  24. def logTrace(msg: => String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  25. def logTrace(msg: => String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  26. def logWarning(msg: => String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  27. def logWarning(msg: => String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  28. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  29. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  30. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  31. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  32. def toString(): String
    Definition Classes
    AnyRef → Any
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  36. object JoinConditionSplitPredicates extends PredicateHelper with Serializable
  37. case object LeftSide extends JoinSide with Product with Serializable
  38. case object RightSide extends JoinSide with Product with Serializable

Inherited from Logging

Inherited from AnyRef

Inherited from Any

Ungrouped