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, LoggingShims, 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. LoggingShims
  6. UnaryExecNode
  7. UnaryLike
  8. SparkPlan
  9. Serializable
  10. Serializable
  11. Logging
  12. QueryPlan
  13. SQLConfHelper
  14. TreeNode
  15. WithOrigin
  16. TreePatternBits
  17. Product
  18. Equals
  19. AnyRef
  20. 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

Type Members

  1. implicit class LogStringContext extends AnyRef
    Definition Classes
    LoggingShims

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(entry: LogEntry, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    LoggingShims
  74. def logDebug(entry: LogEntry): Unit
    Attributes
    protected
    Definition Classes
    LoggingShims
  75. def logDebug(msg: ⇒ String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  76. def logDebug(msg: ⇒ String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  77. def logError(entry: LogEntry, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    LoggingShims
  78. def logError(entry: LogEntry): Unit
    Attributes
    protected
    Definition Classes
    LoggingShims
  79. def logError(msg: ⇒ String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  80. def logError(msg: ⇒ String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  81. def logInfo(entry: LogEntry, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    LoggingShims
  82. def logInfo(entry: LogEntry): Unit
    Attributes
    protected
    Definition Classes
    LoggingShims
  83. def logInfo(msg: ⇒ String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  84. def logInfo(msg: ⇒ String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  85. def logName: String
    Attributes
    protected
    Definition Classes
    Logging
  86. def logTrace(entry: LogEntry, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    LoggingShims
  87. def logTrace(entry: LogEntry): Unit
    Attributes
    protected
    Definition Classes
    LoggingShims
  88. def logTrace(msg: ⇒ String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  89. def logTrace(msg: ⇒ String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  90. def logWarning(entry: LogEntry, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    LoggingShims
  91. def logWarning(entry: LogEntry): Unit
    Attributes
    protected
    Definition Classes
    LoggingShims
  92. def logWarning(msg: ⇒ String, throwable: Throwable): Unit
    Attributes
    protected
    Definition Classes
    Logging
  93. def logWarning(msg: ⇒ String): Unit
    Attributes
    protected
    Definition Classes
    Logging
  94. def logicalLink: Option[LogicalPlan]
    Definition Classes
    SparkPlan
  95. def longMetric(name: String): SQLMetric
    Definition Classes
    SparkPlan
  96. def makeCopy(newArgs: Array[AnyRef]): SparkPlan
    Definition Classes
    SparkPlan → TreeNode
  97. def map[A](f: (SparkPlan) ⇒ A): Seq[A]
    Definition Classes
    TreeNode
  98. final def mapChildren(f: (SparkPlan) ⇒ SparkPlan): SparkPlan
    Definition Classes
    UnaryLike
  99. def mapExpressions(f: (Expression) ⇒ Expression): DeltaOptimizedWriterExec.this.type
    Definition Classes
    QueryPlan
  100. def mapProductIterator[B](f: (Any) ⇒ B)(implicit arg0: ClassTag[B]): Array[B]
    Attributes
    protected
    Definition Classes
    TreeNode
  101. def markRuleAsIneffective(ruleId: RuleId): Unit
    Attributes
    protected
    Definition Classes
    TreeNode
  102. lazy val metrics: Map[String, SQLMetric]
    Definition Classes
    DeltaOptimizedWriterExec → SparkPlan
  103. final def missingInput: AttributeSet
    Definition Classes
    QueryPlan
  104. def multiTransformDown(rule: PartialFunction[SparkPlan, Seq[SparkPlan]]): Stream[SparkPlan]
    Definition Classes
    TreeNode
  105. def multiTransformDownWithPruning(cond: (TreePatternBits) ⇒ Boolean, ruleId: RuleId)(rule: PartialFunction[SparkPlan, Seq[SparkPlan]]): Stream[SparkPlan]
    Definition Classes
    TreeNode
  106. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  107. def nodeName: String
    Definition Classes
    TreeNode
  108. val nodePatterns: Seq[TreePattern]
    Attributes
    protected
    Definition Classes
    TreeNode
  109. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  110. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  111. def numberedTreeString: String
    Definition Classes
    TreeNode
  112. val origin: Origin
    Definition Classes
    TreeNode → WithOrigin
  113. def otherCopyArgs: Seq[AnyRef]
    Attributes
    protected
    Definition Classes
    TreeNode
  114. def output: Seq[Attribute]
    Definition Classes
    DeltaOptimizedWriterExec → QueryPlan
  115. def outputOrdering: Seq[SortOrder]
    Definition Classes
    QueryPlan
  116. def outputPartitioning: Partitioning
    Definition Classes
    SparkPlan
  117. lazy val outputSet: AttributeSet
    Definition Classes
    QueryPlan
    Annotations
    @transient()
  118. def p(number: Int): SparkPlan
    Definition Classes
    TreeNode
  119. val partitionColumns: Seq[String]
  120. final def prepare(): Unit
    Definition Classes
    SparkPlan
  121. def prepareSubqueries(): Unit
    Attributes
    protected
    Definition Classes
    SparkPlan
  122. def prettyJson: String
    Definition Classes
    TreeNode
  123. def printSchema(): Unit
    Definition Classes
    QueryPlan
  124. def producedAttributes: AttributeSet
    Definition Classes
    QueryPlan
  125. 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
  126. 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
  127. 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
  128. def recordEvent(metric: MetricDefinition, additionalTags: Map[TagDefinition, String] = Map.empty, blob: String = null, trimBlob: Boolean = true): Unit
    Definition Classes
    DatabricksLogging
  129. def recordFrameProfile[T](group: String, name: String)(thunk: ⇒ T): T
    Attributes
    protected
    Definition Classes
    DeltaLogging
  130. 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
  131. def recordProductEvent(metric: MetricDefinition with CentralizableMetric, additionalTags: Map[TagDefinition, String] = Map.empty, blob: String = null, trimBlob: Boolean = true): Unit
    Definition Classes
    DatabricksLogging
  132. 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
  133. 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
  134. lazy val references: AttributeSet
    Definition Classes
    QueryPlan
    Annotations
    @transient()
  135. def requiredChildDistribution: Seq[Distribution]
    Definition Classes
    SparkPlan
  136. def requiredChildOrdering: Seq[Seq[SortOrder]]
    Definition Classes
    SparkPlan
  137. def resetMetrics(): Unit
    Definition Classes
    SparkPlan
  138. def rewriteAttrs(attrMap: AttributeMap[Attribute]): SparkPlan
    Definition Classes
    QueryPlan
  139. final def sameResult(other: SparkPlan): Boolean
    Definition Classes
    QueryPlan
  140. lazy val schema: StructType
    Definition Classes
    QueryPlan
  141. def schemaString: String
    Definition Classes
    QueryPlan
  142. final def semanticHash(): Int
    Definition Classes
    QueryPlan
  143. final val session: SparkSession
    Definition Classes
    SparkPlan
  144. def setLogicalLink(logicalPlan: LogicalPlan): Unit
    Definition Classes
    SparkPlan
  145. def setTagValue[T](tag: TreeNodeTag[T], value: T): Unit
    Definition Classes
    TreeNode
  146. def simpleString(maxFields: Int): String
    Definition Classes
    QueryPlan → TreeNode
  147. def simpleStringWithNodeId(): String
    Definition Classes
    QueryPlan → TreeNode
  148. def sparkContext: SparkContext
    Attributes
    protected
    Definition Classes
    SparkPlan
  149. def statePrefix: String
    Attributes
    protected
    Definition Classes
    QueryPlan
  150. def stringArgs: Iterator[Any]
    Attributes
    protected
    Definition Classes
    TreeNode
  151. lazy val subqueries: Seq[SparkPlan]
    Definition Classes
    QueryPlan
    Annotations
    @transient()
  152. def subqueriesAll: Seq[SparkPlan]
    Definition Classes
    QueryPlan
  153. def supportsColumnar: Boolean
    Definition Classes
    SparkPlan
  154. def supportsRowBased: Boolean
    Definition Classes
    SparkPlan
  155. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  156. def toJSON: String
    Definition Classes
    TreeNode
  157. def toRowBased: SparkPlan
    Definition Classes
    SparkPlan
  158. def toString(): String
    Definition Classes
    TreeNode → AnyRef → Any
  159. def transform(rule: PartialFunction[SparkPlan, SparkPlan]): SparkPlan
    Definition Classes
    TreeNode
  160. def transformAllExpressions(rule: PartialFunction[Expression, Expression]): DeltaOptimizedWriterExec.this.type
    Definition Classes
    QueryPlan
  161. def transformAllExpressionsWithPruning(cond: (TreePatternBits) ⇒ Boolean, ruleId: RuleId)(rule: PartialFunction[Expression, Expression]): DeltaOptimizedWriterExec.this.type
    Definition Classes
    QueryPlan
  162. def transformAllExpressionsWithSubqueries(rule: PartialFunction[Expression, Expression]): DeltaOptimizedWriterExec.this.type
    Definition Classes
    QueryPlan
  163. def transformDown(rule: PartialFunction[SparkPlan, SparkPlan]): SparkPlan
    Definition Classes
    TreeNode
  164. def transformDownWithPruning(cond: (TreePatternBits) ⇒ Boolean, ruleId: RuleId)(rule: PartialFunction[SparkPlan, SparkPlan]): SparkPlan
    Definition Classes
    TreeNode
  165. def transformDownWithSubqueries(f: PartialFunction[SparkPlan, SparkPlan]): SparkPlan
    Definition Classes
    QueryPlan
  166. def transformDownWithSubqueriesAndPruning(cond: (TreePatternBits) ⇒ Boolean, ruleId: RuleId)(f: PartialFunction[SparkPlan, SparkPlan]): SparkPlan
    Definition Classes
    QueryPlan
  167. def transformExpressions(rule: PartialFunction[Expression, Expression]): DeltaOptimizedWriterExec.this.type
    Definition Classes
    QueryPlan
  168. def transformExpressionsDown(rule: PartialFunction[Expression, Expression]): DeltaOptimizedWriterExec.this.type
    Definition Classes
    QueryPlan
  169. def transformExpressionsDownWithPruning(cond: (TreePatternBits) ⇒ Boolean, ruleId: RuleId)(rule: PartialFunction[Expression, Expression]): DeltaOptimizedWriterExec.this.type
    Definition Classes
    QueryPlan
  170. def transformExpressionsUp(rule: PartialFunction[Expression, Expression]): DeltaOptimizedWriterExec.this.type
    Definition Classes
    QueryPlan
  171. def transformExpressionsUpWithPruning(cond: (TreePatternBits) ⇒ Boolean, ruleId: RuleId)(rule: PartialFunction[Expression, Expression]): DeltaOptimizedWriterExec.this.type
    Definition Classes
    QueryPlan
  172. def transformExpressionsWithPruning(cond: (TreePatternBits) ⇒ Boolean, ruleId: RuleId)(rule: PartialFunction[Expression, Expression]): DeltaOptimizedWriterExec.this.type
    Definition Classes
    QueryPlan
  173. def transformUp(rule: PartialFunction[SparkPlan, SparkPlan]): SparkPlan
    Definition Classes
    TreeNode
  174. def transformUpWithBeforeAndAfterRuleOnChildren(cond: (SparkPlan) ⇒ Boolean, ruleId: RuleId)(rule: PartialFunction[(SparkPlan, SparkPlan), SparkPlan]): SparkPlan
    Definition Classes
    TreeNode
  175. def transformUpWithNewOutput(rule: PartialFunction[SparkPlan, (SparkPlan, Seq[(Attribute, Attribute)])], skipCond: (SparkPlan) ⇒ Boolean, canGetOutput: (SparkPlan) ⇒ Boolean): SparkPlan
    Definition Classes
    QueryPlan
  176. def transformUpWithPruning(cond: (TreePatternBits) ⇒ Boolean, ruleId: RuleId)(rule: PartialFunction[SparkPlan, SparkPlan]): SparkPlan
    Definition Classes
    TreeNode
  177. def transformUpWithSubqueries(f: PartialFunction[SparkPlan, SparkPlan]): SparkPlan
    Definition Classes
    QueryPlan
  178. def transformWithPruning(cond: (TreePatternBits) ⇒ Boolean, ruleId: RuleId)(rule: PartialFunction[SparkPlan, SparkPlan]): SparkPlan
    Definition Classes
    TreeNode
  179. def transformWithSubqueries(f: PartialFunction[SparkPlan, SparkPlan]): SparkPlan
    Definition Classes
    QueryPlan
  180. lazy val treePatternBits: BitSet
    Definition Classes
    QueryPlan → TreeNode → TreePatternBits
  181. def treeString(append: (String) ⇒ Unit, verbose: Boolean, addSuffix: Boolean, maxFields: Int, printOperatorId: Boolean): Unit
    Definition Classes
    TreeNode
  182. final def treeString(verbose: Boolean, addSuffix: Boolean, maxFields: Int, printOperatorId: Boolean): String
    Definition Classes
    TreeNode
  183. final def treeString: String
    Definition Classes
    TreeNode
  184. def unsetTagValue[T](tag: TreeNodeTag[T]): Unit
    Definition Classes
    TreeNode
  185. def updateOuterReferencesInSubquery(plan: SparkPlan, attrMap: AttributeMap[Attribute]): SparkPlan
    Attributes
    protected
    Definition Classes
    QueryPlan
  186. def vectorTypes: Option[Seq[String]]
    Definition Classes
    SparkPlan
  187. def verboseString(maxFields: Int): String
    Definition Classes
    QueryPlan → TreeNode
  188. def verboseStringWithOperatorId(): String
    Definition Classes
    UnaryExecNode → QueryPlan
  189. def verboseStringWithSuffix(maxFields: Int): String
    Definition Classes
    TreeNode
  190. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  191. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  192. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  193. def waitForSubqueries(): Unit
    Attributes
    protected
    Definition Classes
    SparkPlan
  194. def withNewChildInternal(newChild: SparkPlan): DeltaOptimizedWriterExec
    Attributes
    protected
    Definition Classes
    DeltaOptimizedWriterExec → UnaryLike
  195. final def withNewChildren(newChildren: Seq[SparkPlan]): SparkPlan
    Definition Classes
    TreeNode
  196. final def withNewChildrenInternal(newChildren: IndexedSeq[SparkPlan]): SparkPlan
    Definition Classes
    UnaryLike
  197. 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 LoggingShims

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