org.apache.spark.sql.execution.local

BinaryHashJoinNode

case class BinaryHashJoinNode(conf: SQLConf, leftKeys: Seq[Expression], rightKeys: Seq[Expression], buildSide: BuildSide, left: LocalNode, right: LocalNode) extends BinaryLocalNode with HashJoinNode with Product with Serializable

A HashJoinNode that builds the HashedRelation according to the value of buildSide. The actual work of this node is defined in HashJoinNode.

Linear Supertypes
Serializable, Serializable, HashJoinNode, BinaryLocalNode, LocalNode, Logging, QueryPlan[LocalNode], TreeNode[LocalNode], Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. BinaryHashJoinNode
  2. Serializable
  3. Serializable
  4. HashJoinNode
  5. BinaryLocalNode
  6. LocalNode
  7. Logging
  8. QueryPlan
  9. TreeNode
  10. Product
  11. Equals
  12. AnyRef
  13. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new BinaryHashJoinNode(conf: SQLConf, leftKeys: Seq[Expression], rightKeys: Seq[Expression], buildSide: BuildSide, left: LocalNode, right: LocalNode)

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. def apply(number: Int): LocalNode

    Definition Classes
    TreeNode
  7. def argString: String

    Definition Classes
    TreeNode
  8. def asCode: String

    Definition Classes
    TreeNode
  9. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  10. final def asIterator: Iterator[InternalRow]

    Returns the content through the Iterator interface.

    Returns the content through the Iterator interface.

    Definition Classes
    LocalNode
  11. val buildSide: BuildSide

    Definition Classes
    BinaryHashJoinNodeHashJoinNode
  12. def canProcessSafeRows: Boolean

    Specifies whether this operator is capable of processing Java-object-based Rows (i.

    Specifies whether this operator is capable of processing Java-object-based Rows (i.e. rows that are not UnsafeRows).

    Definition Classes
    LocalNode
  13. def canProcessUnsafeRows: Boolean

    Specifies whether this operator is capable of processing UnsafeRows

    Specifies whether this operator is capable of processing UnsafeRows

    Definition Classes
    LocalNode
  14. def children: Seq[LocalNode]

    Definition Classes
    BinaryLocalNode → TreeNode
  15. def clone(): AnyRef

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

    Closes the iterator and releases all resources.

    Closes the iterator and releases all resources. It should be idempotent.

    Implementations of this must also call the close() function of its children.

    Definition Classes
    BinaryHashJoinNodeLocalNode
  17. final def collect(): Seq[Row]

    Returns the content of the iterator from the beginning to the end in the form of a Scala Seq.

    Returns the content of the iterator from the beginning to the end in the form of a Scala Seq.

    Definition Classes
    LocalNode
  18. def collect[B](pf: PartialFunction[LocalNode, B]): Seq[B]

    Definition Classes
    TreeNode
  19. def collectFirst[B](pf: PartialFunction[LocalNode, B]): Option[B]

    Definition Classes
    TreeNode
  20. val conf: SQLConf

  21. lazy val containsChild: Set[TreeNode[_]]

    Definition Classes
    TreeNode
  22. def doOpen(): Unit

    Custom open implementation to be overridden by subclasses.

    Custom open implementation to be overridden by subclasses.

    Attributes
    protected
    Definition Classes
    BinaryHashJoinNodeHashJoinNode
  23. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  24. def expressions: Seq[Expression]

    Definition Classes
    QueryPlan
  25. def fastEquals(other: TreeNode[_]): Boolean

    Definition Classes
    TreeNode
  26. def fetch(): InternalRow

    Definition Classes
    HashJoinNode
  27. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  28. def find(f: (LocalNode) ⇒ Boolean): Option[LocalNode]

    Definition Classes
    TreeNode
  29. def flatMap[A](f: (LocalNode) ⇒ TraversableOnce[A]): Seq[A]

    Definition Classes
    TreeNode
  30. def foreach(f: (LocalNode) ⇒ Unit): Unit

    Definition Classes
    TreeNode
  31. def foreachUp(f: (LocalNode) ⇒ Unit): Unit

    Definition Classes
    TreeNode
  32. def generateTreeString(depth: Int, lastChildren: Seq[Boolean], builder: StringBuilder): StringBuilder

    Attributes
    protected
    Definition Classes
    TreeNode
  33. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  34. def getNodeNumbered(number: MutableInt): LocalNode

    Attributes
    protected
    Definition Classes
    TreeNode
  35. def inputSet: AttributeSet

    Definition Classes
    QueryPlan
  36. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  37. def isTraceEnabled(): Boolean

    Attributes
    protected
    Definition Classes
    Logging
  38. def jsonFields: List[(String, JValue)]

    Attributes
    protected
    Definition Classes
    TreeNode
  39. val left: LocalNode

    Definition Classes
    BinaryHashJoinNodeBinaryLocalNode
  40. val leftKeys: Seq[Expression]

  41. def log: Logger

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

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

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

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

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

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

    Attributes
    protected
    Definition Classes
    Logging
  48. def logName: String

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

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

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

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

    Attributes
    protected
    Definition Classes
    Logging
  53. def makeCopy(newArgs: Array[AnyRef]): LocalNode

    Definition Classes
    TreeNode
  54. def map[A](f: (LocalNode) ⇒ A): Seq[A]

    Definition Classes
    TreeNode
  55. def mapChildren(f: (LocalNode) ⇒ LocalNode): LocalNode

    Definition Classes
    TreeNode
  56. def missingInput: AttributeSet

    Definition Classes
    QueryPlan
  57. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  58. def newMutableProjection(expressions: Seq[Expression], inputSchema: Seq[Attribute]): () ⇒ MutableProjection

    Attributes
    protected
    Definition Classes
    LocalNode
  59. def newPredicate(expression: Expression, inputSchema: Seq[Attribute]): (InternalRow) ⇒ Boolean

    Attributes
    protected
    Definition Classes
    LocalNode
  60. def newProjection(expressions: Seq[Expression], inputSchema: Seq[Attribute]): Projection

    Attributes
    protected
    Definition Classes
    LocalNode
  61. def next(): Boolean

    Definition Classes
    HashJoinNode
  62. def nodeName: String

    Definition Classes
    TreeNode
  63. final def notify(): Unit

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

    Definition Classes
    AnyRef
  65. def numberedTreeString: String

    Definition Classes
    TreeNode
  66. def open(): Unit

    Definition Classes
    HashJoinNode
  67. val origin: Origin

    Definition Classes
    TreeNode
  68. def otherCopyArgs: Seq[AnyRef]

    Attributes
    protected
    Definition Classes
    TreeNode
  69. def output: Seq[Attribute]

    Definition Classes
    BinaryHashJoinNode → QueryPlan
  70. def outputSet: AttributeSet

    Definition Classes
    QueryPlan
  71. def outputsUnsafeRows: Boolean

    Specifies whether this operator outputs UnsafeRows

    Specifies whether this operator outputs UnsafeRows

    Definition Classes
    LocalNode
  72. def prepare(): Unit

    Called before open().

    Called before open(). Prepare can be used to reserve memory needed. It must NOT consume any input data.

    Implementations of this must also call the prepare() function of its children.

    Definition Classes
    LocalNode
  73. def prettyJson: String

    Definition Classes
    TreeNode
  74. def printSchema(): Unit

    Definition Classes
    QueryPlan
  75. def references: AttributeSet

    Definition Classes
    QueryPlan
  76. val right: LocalNode

    Definition Classes
    BinaryHashJoinNodeBinaryLocalNode
  77. val rightKeys: Seq[Expression]

  78. lazy val schema: StructType

    Definition Classes
    QueryPlan
  79. def schemaString: String

    Definition Classes
    QueryPlan
  80. def simpleString: String

    Definition Classes
    QueryPlan → TreeNode
  81. def statePrefix: String

    Attributes
    protected
    Definition Classes
    QueryPlan
  82. val streamedKeys: Seq[Expression]

    Attributes
    protected
    Definition Classes
    BinaryHashJoinNodeHashJoinNode
  83. val streamedNode: LocalNode

    Attributes
    protected
    Definition Classes
    BinaryHashJoinNodeHashJoinNode
  84. def stringArgs: Iterator[Any]

    Attributes
    protected
    Definition Classes
    TreeNode
  85. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  86. def toJSON: String

    Definition Classes
    TreeNode
  87. def toString(): String

    Definition Classes
    TreeNode → AnyRef → Any
  88. def transform(rule: PartialFunction[LocalNode, LocalNode]): LocalNode

    Definition Classes
    TreeNode
  89. def transformAllExpressions(rule: PartialFunction[Expression, Expression]): BinaryHashJoinNode.this.type

    Definition Classes
    QueryPlan
  90. def transformChildren(rule: PartialFunction[LocalNode, LocalNode], nextOperation: (LocalNode, PartialFunction[LocalNode, LocalNode]) ⇒ LocalNode): LocalNode

    Attributes
    protected
    Definition Classes
    TreeNode
  91. def transformDown(rule: PartialFunction[LocalNode, LocalNode]): LocalNode

    Definition Classes
    TreeNode
  92. def transformExpressions(rule: PartialFunction[Expression, Expression]): BinaryHashJoinNode.this.type

    Definition Classes
    QueryPlan
  93. def transformExpressionsDown(rule: PartialFunction[Expression, Expression]): BinaryHashJoinNode.this.type

    Definition Classes
    QueryPlan
  94. def transformExpressionsUp(rule: PartialFunction[Expression, Expression]): BinaryHashJoinNode.this.type

    Definition Classes
    QueryPlan
  95. def transformUp(rule: PartialFunction[LocalNode, LocalNode]): LocalNode

    Definition Classes
    TreeNode
  96. def treeString: String

    Definition Classes
    TreeNode
  97. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  100. def withHashedRelation(hashedRelation: HashedRelation): Unit

    Sets the HashedRelation used by this node.

    Sets the HashedRelation used by this node. This method needs to be called after before the first next gets called.

    Attributes
    protected
    Definition Classes
    HashJoinNode
  101. def withNewChildren(newChildren: Seq[LocalNode]): LocalNode

    Definition Classes
    TreeNode

Inherited from Serializable

Inherited from Serializable

Inherited from HashJoinNode

Inherited from BinaryLocalNode

Inherited from LocalNode

Inherited from Logging

Inherited from QueryPlan[LocalNode]

Inherited from TreeNode[LocalNode]

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped