Packages

c

org.apache.spark.sql.delta.perf

DeltaOptimizedWriterExec

case class DeltaOptimizedWriterExec(child: SparkPlan, partitionColumns: Seq[String], deltaLog: DeltaLog) extends SparkPlan with UnaryExecNode with DeltaLogging with Product with Serializable

An execution node which shuffles data to a target output of DELTA_OPTIMIZE_WRITE_SHUFFLE_BLOCKS blocks, hash partitioned on the table partition columns. We group all blocks by their reducer_id's and bin-pack into DELTA_OPTIMIZE_WRITE_BIN_SIZE bins. Then we launch a Spark task per bin to write out a single file for each bin.

child

The execution plan

partitionColumns

The partition columns of the table. Used for hash partitioning the write

deltaLog

The DeltaLog for the table. Used for logging only

Linear Supertypes
DeltaLogging, DatabricksLogging, DeltaProgressReporter, UnaryExecNode, UnaryLike[SparkPlan], SparkPlan, Serializable, Serializable, Logging, QueryPlan[SparkPlan], SQLConfHelper, TreeNode[SparkPlan], WithOrigin, TreePatternBits, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DeltaOptimizedWriterExec
  2. DeltaLogging
  3. DatabricksLogging
  4. DeltaProgressReporter
  5. UnaryExecNode
  6. UnaryLike
  7. SparkPlan
  8. Serializable
  9. Serializable
  10. Logging
  11. QueryPlan
  12. SQLConfHelper
  13. TreeNode
  14. WithOrigin
  15. TreePatternBits
  16. Product
  17. Equals
  18. AnyRef
  19. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new DeltaOptimizedWriterExec(child: SparkPlan, partitionColumns: Seq[String], deltaLog: DeltaLog)

    child

    The execution plan

    partitionColumns

    The partition columns of the table. Used for hash partitioning the write

    deltaLog

    The DeltaLog for the table. Used for logging only

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. lazy val allAttributes: AttributeSeq
    Definition Classes
    QueryPlan
  5. def apply(number: Int): TreeNode[_]
    Definition Classes
    TreeNode
  6. def argString(maxFields: Int): String
    Definition Classes
    TreeNode
  7. def asCode: String
    Definition Classes
    TreeNode
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. final lazy val canonicalized: SparkPlan
    Definition Classes
    QueryPlan
    Annotations
    @transient()
  10. val child: SparkPlan
    Definition Classes
    DeltaOptimizedWriterExec → UnaryLike
  11. final lazy val children: Seq[SparkPlan]
    Definition Classes
    UnaryLike
    Annotations
    @transient()
  12. def cleanupResources(): Unit
    Attributes
    protected[sql]
    Definition Classes
    SparkPlan
  13. def clone(): SparkPlan
    Definition Classes
    TreeNode → AnyRef
  14. def collect[B](pf: PartialFunction[SparkPlan, B]): Seq[B]
    Definition Classes
    TreeNode
  15. def collectFirst[B](pf: PartialFunction[SparkPlan, B]): Option[B]
    Definition Classes
    TreeNode
  16. def collectLeaves(): Seq[SparkPlan]
    Definition Classes
    TreeNode
  17. def collectWithSubqueries[B](f: PartialFunction[SparkPlan, B]): Seq[B]
    Definition Classes
    QueryPlan
  18. def conf: SQLConf
    Definition Classes
    SparkPlan → SQLConfHelper
  19. final def containsAllPatterns(patterns: TreePattern*): Boolean
    Definition Classes
    TreePatternBits
  20. final def containsAnyPattern(patterns: TreePattern*): Boolean
    Definition Classes
    TreePatternBits
  21. lazy val containsChild: Set[TreeNode[_]]
    Definition Classes
    TreeNode
  22. final def containsPattern(t: TreePattern): Boolean
    Definition Classes
    TreePatternBits
    Annotations
    @inline()
  23. def copyTagsFrom(other: SparkPlan): Unit
    Definition Classes
    TreeNode
  24. def deltaAssert(check: ⇒ Boolean, name: String, msg: String, deltaLog: DeltaLog = null, data: AnyRef = null, path: Option[Path] = None): Unit

    Helper method to check invariants in Delta code.

    Helper method to check invariants in Delta code. Fails when running in tests, records a delta assertion event and logs a warning otherwise.

    Attributes
    protected
    Definition Classes
    DeltaLogging
  25. val deltaLog: DeltaLog
  26. lazy val deterministic: Boolean
    Definition Classes
    QueryPlan
  27. def doCanonicalize(): SparkPlan
    Attributes
    protected
    Definition Classes
    QueryPlan
  28. def doExecute(): RDD[InternalRow]
    Definition Classes
    DeltaOptimizedWriterExec → SparkPlan
  29. def doExecuteBroadcast[T](): Broadcast[T]
    Attributes
    protected[sql]
    Definition Classes
    SparkPlan
  30. def doExecuteColumnar(): RDD[ColumnarBatch]
    Attributes
    protected
    Definition Classes
    SparkPlan
  31. def doExecuteWrite(writeFilesSpec: WriteFilesSpec): RDD[WriterCommitMessage]
    Attributes
    protected
    Definition Classes
    SparkPlan
  32. def doPrepare(): Unit
    Attributes
    protected
    Definition Classes
    SparkPlan
  33. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  34. final def execute(): RDD[InternalRow]
    Definition Classes
    SparkPlan
  35. final def executeBroadcast[T](): Broadcast[T]
    Definition Classes
    SparkPlan
  36. def executeCollect(): Array[InternalRow]
    Definition Classes
    SparkPlan
  37. def executeCollectPublic(): Array[Row]
    Definition Classes
    SparkPlan
  38. final def executeColumnar(): RDD[ColumnarBatch]
    Definition Classes
    SparkPlan
  39. final def executeQuery[T](query: ⇒ T): T
    Attributes
    protected
    Definition Classes
    SparkPlan
  40. def executeTail(n: Int): Array[InternalRow]
    Definition Classes
    SparkPlan
  41. def executeTake(n: Int): Array[InternalRow]
    Definition Classes
    SparkPlan
  42. def executeToIterator(): Iterator[InternalRow]
    Definition Classes
    SparkPlan
  43. def executeWrite(writeFilesSpec: WriteFilesSpec): RDD[WriterCommitMessage]
    Definition Classes
    SparkPlan
  44. def exists(f: (SparkPlan) ⇒ Boolean): Boolean
    Definition Classes
    TreeNode
  45. final def expressions: Seq[Expression]
    Definition Classes
    QueryPlan
  46. def fastEquals(other: TreeNode[_]): Boolean
    Definition Classes
    TreeNode
  47. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  48. def find(f: (SparkPlan) ⇒ Boolean): Option[SparkPlan]
    Definition Classes
    TreeNode
  49. def flatMap[A](f: (SparkPlan) ⇒ TraversableOnce[A]): Seq[A]
    Definition Classes
    TreeNode
  50. def foreach(f: (SparkPlan) ⇒ Unit): Unit
    Definition Classes
    TreeNode
  51. def foreachUp(f: (SparkPlan) ⇒ Unit): Unit
    Definition Classes
    TreeNode
  52. def formattedNodeName: String
    Attributes
    protected
    Definition Classes
    QueryPlan
  53. def generateTreeString(depth: Int, lastChildren: ArrayList[Boolean], append: (String) ⇒ Unit, verbose: Boolean, prefix: String, addSuffix: Boolean, maxFields: Int, printNodeId: Boolean, indent: Int): Unit
    Definition Classes
    TreeNode
  54. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  55. def getCommonTags(deltaLog: DeltaLog, tahoeId: String): Map[TagDefinition, String]
    Definition Classes
    DeltaLogging
  56. def getDefaultTreePatternBits: BitSet
    Attributes
    protected
    Definition Classes
    TreeNode
  57. def getErrorData(e: Throwable): Map[String, Any]
    Definition Classes
    DeltaLogging
  58. def getTagValue[T](tag: TreeNodeTag[T]): Option[T]
    Definition Classes
    TreeNode
  59. def hashCode(): Int
    Definition Classes
    TreeNode → AnyRef → Any
  60. val id: Int
    Definition Classes
    SparkPlan
  61. def initializeLogIfNecessary(isInterpreter: Boolean, silent: Boolean): Boolean
    Attributes
    protected
    Definition Classes
    Logging
  62. def initializeLogIfNecessary(isInterpreter: Boolean): Unit
    Attributes
    protected
    Definition Classes
    Logging
  63. def innerChildren: Seq[QueryPlan[_]]
    Definition Classes
    QueryPlan → TreeNode
  64. def inputSet: AttributeSet
    Definition Classes
    QueryPlan
  65. def isCanonicalizedPlan: Boolean
    Attributes
    protected
    Definition Classes
    QueryPlan
  66. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  67. def isRuleIneffective(ruleId: RuleId): Boolean
    Attributes
    protected
    Definition Classes
    TreeNode
  68. def isTraceEnabled(): Boolean
    Attributes
    protected
    Definition Classes
    Logging
  69. def jsonFields: List[JField]
    Attributes
    protected
    Definition Classes
    TreeNode
  70. final def legacyWithNewChildren(newChildren: Seq[SparkPlan]): SparkPlan
    Attributes
    protected
    Definition Classes
    TreeNode
  71. def log: Logger
    Attributes
    protected
    Definition Classes
    Logging
  72. def logConsole(line: String): Unit
    Definition Classes
    DatabricksLogging
  73. def logDebug(msg: ⇒ String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  74. def logDebug(msg: ⇒ String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  75. def logError(msg: ⇒ String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  76. def logError(msg: ⇒ String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  77. def logInfo(msg: ⇒ String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  78. def logInfo(msg: ⇒ String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  79. def logName: String
    Attributes
    protected
    Definition Classes
    Logging
  80. def logTrace(msg: ⇒ String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  81. def logTrace(msg: ⇒ String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  82. def logWarning(msg: ⇒ String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  83. def logWarning(msg: ⇒ String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  84. def logicalLink: Option[LogicalPlan]
    Definition Classes
    SparkPlan
  85. def longMetric(name: String): SQLMetric
    Definition Classes
    SparkPlan
  86. def makeCopy(newArgs: Array[AnyRef]): SparkPlan
    Definition Classes
    SparkPlan → TreeNode
  87. def map[A](f: (SparkPlan) ⇒ A): Seq[A]
    Definition Classes
    TreeNode
  88. final def mapChildren(f: (SparkPlan) ⇒ SparkPlan): SparkPlan
    Definition Classes
    UnaryLike
  89. def mapExpressions(f: (Expression) ⇒ Expression): DeltaOptimizedWriterExec.this.type
    Definition Classes
    QueryPlan
  90. def mapProductIterator[B](f: (Any) ⇒ B)(implicit arg0: ClassTag[B]): Array[B]
    Attributes
    protected
    Definition Classes
    TreeNode
  91. def markRuleAsIneffective(ruleId: RuleId): Unit
    Attributes
    protected
    Definition Classes
    TreeNode
  92. lazy val metrics: Map[String, SQLMetric]
    Definition Classes
    DeltaOptimizedWriterExec → SparkPlan
  93. final def missingInput: AttributeSet
    Definition Classes
    QueryPlan
  94. def multiTransformDown(rule: PartialFunction[SparkPlan, Seq[SparkPlan]]): Stream[SparkPlan]
    Definition Classes
    TreeNode
  95. def multiTransformDownWithPruning(cond: (TreePatternBits) ⇒ Boolean, ruleId: RuleId)(rule: PartialFunction[SparkPlan, Seq[SparkPlan]]): Stream[SparkPlan]
    Definition Classes
    TreeNode
  96. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  97. def nodeName: String
    Definition Classes
    TreeNode
  98. val nodePatterns: Seq[TreePattern]
    Attributes
    protected
    Definition Classes
    TreeNode
  99. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  100. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  101. def numberedTreeString: String
    Definition Classes
    TreeNode
  102. val origin: Origin
    Definition Classes
    TreeNode → WithOrigin
  103. def otherCopyArgs: Seq[AnyRef]
    Attributes
    protected
    Definition Classes
    TreeNode
  104. def output: Seq[Attribute]
    Definition Classes
    DeltaOptimizedWriterExec → QueryPlan
  105. def outputOrdering: Seq[SortOrder]
    Definition Classes
    QueryPlan
  106. def outputPartitioning: Partitioning
    Definition Classes
    SparkPlan
  107. lazy val outputSet: AttributeSet
    Definition Classes
    QueryPlan
    Annotations
    @transient()
  108. def p(number: Int): SparkPlan
    Definition Classes
    TreeNode
  109. val partitionColumns: Seq[String]
  110. final def prepare(): Unit
    Definition Classes
    SparkPlan
  111. def prepareSubqueries(): Unit
    Attributes
    protected
    Definition Classes
    SparkPlan
  112. def prettyJson: String
    Definition Classes
    TreeNode
  113. def printSchema(): Unit
    Definition Classes
    QueryPlan
  114. def producedAttributes: AttributeSet
    Definition Classes
    QueryPlan
  115. def recordDeltaEvent(deltaLog: DeltaLog, opType: String, tags: Map[TagDefinition, String] = Map.empty, data: AnyRef = null, path: Option[Path] = None): Unit

    Used to record the occurrence of a single event or report detailed, operation specific statistics.

    Used to record the occurrence of a single event or report detailed, operation specific statistics.

    path

    Used to log the path of the delta table when deltaLog is null.

    Attributes
    protected
    Definition Classes
    DeltaLogging
  116. def recordDeltaOperation[A](deltaLog: DeltaLog, opType: String, tags: Map[TagDefinition, String] = Map.empty)(thunk: ⇒ A): A

    Used to report the duration as well as the success or failure of an operation on a deltaLog.

    Used to report the duration as well as the success or failure of an operation on a deltaLog.

    Attributes
    protected
    Definition Classes
    DeltaLogging
  117. def recordDeltaOperationForTablePath[A](tablePath: String, opType: String, tags: Map[TagDefinition, String] = Map.empty)(thunk: ⇒ A): A

    Used to report the duration as well as the success or failure of an operation on a tahoePath.

    Used to report the duration as well as the success or failure of an operation on a tahoePath.

    Attributes
    protected
    Definition Classes
    DeltaLogging
  118. def recordEvent(metric: MetricDefinition, additionalTags: Map[TagDefinition, String] = Map.empty, blob: String = null, trimBlob: Boolean = true): Unit
    Definition Classes
    DatabricksLogging
  119. def recordFrameProfile[T](group: String, name: String)(thunk: ⇒ T): T
    Attributes
    protected
    Definition Classes
    DeltaLogging
  120. def recordOperation[S](opType: OpType, opTarget: String = null, extraTags: Map[TagDefinition, String], isSynchronous: Boolean = true, alwaysRecordStats: Boolean = false, allowAuthTags: Boolean = false, killJvmIfStuck: Boolean = false, outputMetric: MetricDefinition = METRIC_OPERATION_DURATION, silent: Boolean = true)(thunk: ⇒ S): S
    Definition Classes
    DatabricksLogging
  121. def recordProductEvent(metric: MetricDefinition with CentralizableMetric, additionalTags: Map[TagDefinition, String] = Map.empty, blob: String = null, trimBlob: Boolean = true): Unit
    Definition Classes
    DatabricksLogging
  122. def recordProductUsage(metric: MetricDefinition with CentralizableMetric, quantity: Double, additionalTags: Map[TagDefinition, String] = Map.empty, blob: String = null, forceSample: Boolean = false, trimBlob: Boolean = true, silent: Boolean = false): Unit
    Definition Classes
    DatabricksLogging
  123. def recordUsage(metric: MetricDefinition, quantity: Double, additionalTags: Map[TagDefinition, String] = Map.empty, blob: String = null, forceSample: Boolean = false, trimBlob: Boolean = true, silent: Boolean = false): Unit
    Definition Classes
    DatabricksLogging
  124. lazy val references: AttributeSet
    Definition Classes
    QueryPlan
    Annotations
    @transient()
  125. def requiredChildDistribution: Seq[Distribution]
    Definition Classes
    SparkPlan
  126. def requiredChildOrdering: Seq[Seq[SortOrder]]
    Definition Classes
    SparkPlan
  127. def resetMetrics(): Unit
    Definition Classes
    SparkPlan
  128. def rewriteAttrs(attrMap: AttributeMap[Attribute]): SparkPlan
    Definition Classes
    QueryPlan
  129. final def sameResult(other: SparkPlan): Boolean
    Definition Classes
    QueryPlan
  130. lazy val schema: StructType
    Definition Classes
    QueryPlan
  131. def schemaString: String
    Definition Classes
    QueryPlan
  132. final def semanticHash(): Int
    Definition Classes
    QueryPlan
  133. final val session: SparkSession
    Definition Classes
    SparkPlan
  134. def setLogicalLink(logicalPlan: LogicalPlan): Unit
    Definition Classes
    SparkPlan
  135. def setTagValue[T](tag: TreeNodeTag[T], value: T): Unit
    Definition Classes
    TreeNode
  136. def simpleString(maxFields: Int): String
    Definition Classes
    QueryPlan → TreeNode
  137. def simpleStringWithNodeId(): String
    Definition Classes
    QueryPlan → TreeNode
  138. def sparkContext: SparkContext
    Attributes
    protected
    Definition Classes
    SparkPlan
  139. def statePrefix: String
    Attributes
    protected
    Definition Classes
    QueryPlan
  140. def stringArgs: Iterator[Any]
    Attributes
    protected
    Definition Classes
    TreeNode
  141. lazy val subqueries: Seq[SparkPlan]
    Definition Classes
    QueryPlan
    Annotations
    @transient()
  142. def subqueriesAll: Seq[SparkPlan]
    Definition Classes
    QueryPlan
  143. def supportsColumnar: Boolean
    Definition Classes
    SparkPlan
  144. def supportsRowBased: Boolean
    Definition Classes
    SparkPlan
  145. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  146. def toJSON: String
    Definition Classes
    TreeNode
  147. def toRowBased: SparkPlan
    Definition Classes
    SparkPlan
  148. def toString(): String
    Definition Classes
    TreeNode → AnyRef → Any
  149. def transform(rule: PartialFunction[SparkPlan, SparkPlan]): SparkPlan
    Definition Classes
    TreeNode
  150. def transformAllExpressions(rule: PartialFunction[Expression, Expression]): DeltaOptimizedWriterExec.this.type
    Definition Classes
    QueryPlan
  151. def transformAllExpressionsWithPruning(cond: (TreePatternBits) ⇒ Boolean, ruleId: RuleId)(rule: PartialFunction[Expression, Expression]): DeltaOptimizedWriterExec.this.type
    Definition Classes
    QueryPlan
  152. def transformAllExpressionsWithSubqueries(rule: PartialFunction[Expression, Expression]): DeltaOptimizedWriterExec.this.type
    Definition Classes
    QueryPlan
  153. def transformDown(rule: PartialFunction[SparkPlan, SparkPlan]): SparkPlan
    Definition Classes
    TreeNode
  154. def transformDownWithPruning(cond: (TreePatternBits) ⇒ Boolean, ruleId: RuleId)(rule: PartialFunction[SparkPlan, SparkPlan]): SparkPlan
    Definition Classes
    TreeNode
  155. def transformDownWithSubqueries(f: PartialFunction[SparkPlan, SparkPlan]): SparkPlan
    Definition Classes
    QueryPlan
  156. def transformDownWithSubqueriesAndPruning(cond: (TreePatternBits) ⇒ Boolean, ruleId: RuleId)(f: PartialFunction[SparkPlan, SparkPlan]): SparkPlan
    Definition Classes
    QueryPlan
  157. def transformExpressions(rule: PartialFunction[Expression, Expression]): DeltaOptimizedWriterExec.this.type
    Definition Classes
    QueryPlan
  158. def transformExpressionsDown(rule: PartialFunction[Expression, Expression]): DeltaOptimizedWriterExec.this.type
    Definition Classes
    QueryPlan
  159. def transformExpressionsDownWithPruning(cond: (TreePatternBits) ⇒ Boolean, ruleId: RuleId)(rule: PartialFunction[Expression, Expression]): DeltaOptimizedWriterExec.this.type
    Definition Classes
    QueryPlan
  160. def transformExpressionsUp(rule: PartialFunction[Expression, Expression]): DeltaOptimizedWriterExec.this.type
    Definition Classes
    QueryPlan
  161. def transformExpressionsUpWithPruning(cond: (TreePatternBits) ⇒ Boolean, ruleId: RuleId)(rule: PartialFunction[Expression, Expression]): DeltaOptimizedWriterExec.this.type
    Definition Classes
    QueryPlan
  162. def transformExpressionsWithPruning(cond: (TreePatternBits) ⇒ Boolean, ruleId: RuleId)(rule: PartialFunction[Expression, Expression]): DeltaOptimizedWriterExec.this.type
    Definition Classes
    QueryPlan
  163. def transformUp(rule: PartialFunction[SparkPlan, SparkPlan]): SparkPlan
    Definition Classes
    TreeNode
  164. def transformUpWithBeforeAndAfterRuleOnChildren(cond: (SparkPlan) ⇒ Boolean, ruleId: RuleId)(rule: PartialFunction[(SparkPlan, SparkPlan), SparkPlan]): SparkPlan
    Definition Classes
    TreeNode
  165. def transformUpWithNewOutput(rule: PartialFunction[SparkPlan, (SparkPlan, Seq[(Attribute, Attribute)])], skipCond: (SparkPlan) ⇒ Boolean, canGetOutput: (SparkPlan) ⇒ Boolean): SparkPlan
    Definition Classes
    QueryPlan
  166. def transformUpWithPruning(cond: (TreePatternBits) ⇒ Boolean, ruleId: RuleId)(rule: PartialFunction[SparkPlan, SparkPlan]): SparkPlan
    Definition Classes
    TreeNode
  167. def transformUpWithSubqueries(f: PartialFunction[SparkPlan, SparkPlan]): SparkPlan
    Definition Classes
    QueryPlan
  168. def transformWithPruning(cond: (TreePatternBits) ⇒ Boolean, ruleId: RuleId)(rule: PartialFunction[SparkPlan, SparkPlan]): SparkPlan
    Definition Classes
    TreeNode
  169. def transformWithSubqueries(f: PartialFunction[SparkPlan, SparkPlan]): SparkPlan
    Definition Classes
    QueryPlan
  170. lazy val treePatternBits: BitSet
    Definition Classes
    QueryPlan → TreeNode → TreePatternBits
  171. def treeString(append: (String) ⇒ Unit, verbose: Boolean, addSuffix: Boolean, maxFields: Int, printOperatorId: Boolean): Unit
    Definition Classes
    TreeNode
  172. final def treeString(verbose: Boolean, addSuffix: Boolean, maxFields: Int, printOperatorId: Boolean): String
    Definition Classes
    TreeNode
  173. final def treeString: String
    Definition Classes
    TreeNode
  174. def unsetTagValue[T](tag: TreeNodeTag[T]): Unit
    Definition Classes
    TreeNode
  175. def updateOuterReferencesInSubquery(plan: SparkPlan, attrMap: AttributeMap[Attribute]): SparkPlan
    Attributes
    protected
    Definition Classes
    QueryPlan
  176. def vectorTypes: Option[Seq[String]]
    Definition Classes
    SparkPlan
  177. def verboseString(maxFields: Int): String
    Definition Classes
    QueryPlan → TreeNode
  178. def verboseStringWithOperatorId(): String
    Definition Classes
    UnaryExecNode → QueryPlan
  179. def verboseStringWithSuffix(maxFields: Int): String
    Definition Classes
    TreeNode
  180. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  181. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  182. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  183. def waitForSubqueries(): Unit
    Attributes
    protected
    Definition Classes
    SparkPlan
  184. def withNewChildInternal(newChild: SparkPlan): DeltaOptimizedWriterExec
    Attributes
    protected
    Definition Classes
    DeltaOptimizedWriterExec → UnaryLike
  185. final def withNewChildren(newChildren: Seq[SparkPlan]): SparkPlan
    Definition Classes
    TreeNode
  186. final def withNewChildrenInternal(newChildren: IndexedSeq[SparkPlan]): SparkPlan
    Definition Classes
    UnaryLike
  187. def withStatusCode[T](statusCode: String, defaultMessage: String, data: Map[String, Any] = Map.empty)(body: ⇒ T): T

    Report a log to indicate some command is running.

    Report a log to indicate some command is running.

    Definition Classes
    DeltaProgressReporter

Inherited from DeltaLogging

Inherited from DatabricksLogging

Inherited from DeltaProgressReporter

Inherited from UnaryExecNode

Inherited from UnaryLike[SparkPlan]

Inherited from SparkPlan

Inherited from Serializable

Inherited from Serializable

Inherited from Logging

Inherited from QueryPlan[SparkPlan]

Inherited from SQLConfHelper

Inherited from TreeNode[SparkPlan]

Inherited from WithOrigin

Inherited from TreePatternBits

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped