Packages

object ExplainUtils extends AdaptiveSparkPlanHelper

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

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. def collect[B](p: SparkPlan)(pf: PartialFunction[SparkPlan, B]): Seq[B]

    Returns a Seq containing the result of applying a partial function to all elements in this tree on which the function is defined.

    Returns a Seq containing the result of applying a partial function to all elements in this tree on which the function is defined.

    Definition Classes
    AdaptiveSparkPlanHelper
  7. def collectFirst[B](p: SparkPlan)(pf: PartialFunction[SparkPlan, B]): Option[B]

    Finds and returns the first SparkPlan of the tree for which the given partial function is defined (pre-order), and applies the partial function to it.

    Finds and returns the first SparkPlan of the tree for which the given partial function is defined (pre-order), and applies the partial function to it.

    Definition Classes
    AdaptiveSparkPlanHelper
  8. def collectLeaves(p: SparkPlan): Seq[SparkPlan]

    Returns a Seq containing the leaves in this tree.

    Returns a Seq containing the leaves in this tree.

    Definition Classes
    AdaptiveSparkPlanHelper
  9. def collectWithSubqueries[B](p: SparkPlan)(f: PartialFunction[SparkPlan, B]): Seq[B]

    Returns a sequence containing the result of applying a partial function to all elements in this plan, also considering all the plans in its (nested) subqueries

    Returns a sequence containing the result of applying a partial function to all elements in this plan, also considering all the plans in its (nested) subqueries

    Definition Classes
    AdaptiveSparkPlanHelper
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  13. def find(p: SparkPlan)(f: (SparkPlan) => Boolean): Option[SparkPlan]

    Find the first SparkPlan that satisfies the condition specified by f.

    Find the first SparkPlan that satisfies the condition specified by f. The condition is recursively applied to this node and all of its children (pre-order).

    Definition Classes
    AdaptiveSparkPlanHelper
  14. def flatMap[A](p: SparkPlan)(f: (SparkPlan) => TraversableOnce[A]): Seq[A]

    Returns a Seq by applying a function to all nodes in this tree and using the elements of the resulting collections.

    Returns a Seq by applying a function to all nodes in this tree and using the elements of the resulting collections.

    Definition Classes
    AdaptiveSparkPlanHelper
  15. def foreach(p: SparkPlan)(f: (SparkPlan) => Unit): Unit

    Runs the given function on this node and then recursively on children.

    Runs the given function on this node and then recursively on children.

    f

    the function to be applied to each node in the tree.

    Definition Classes
    AdaptiveSparkPlanHelper
  16. def foreachUp(p: SparkPlan)(f: (SparkPlan) => Unit): Unit

    Runs the given function recursively on children then on this node.

    Runs the given function recursively on children then on this node.

    f

    the function to be applied to each node in the tree.

    Definition Classes
    AdaptiveSparkPlanHelper
  17. def generateFieldString(fieldName: String, values: Any): String

    Generate detailed field string with different format based on type of input value

  18. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. def getOpId(plan: QueryPlan[_]): String

    Returns the operator identifier for the supplied plan by retrieving the operationId tag value.

  20. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. def mapPlans[A](p: SparkPlan)(f: (SparkPlan) => A): Seq[A]

    Returns a Seq containing the result of applying the given function to each node in this tree in a preorder traversal.

    Returns a Seq containing the result of applying the given function to each node in this tree in a preorder traversal.

    f

    the function to be applied.

    Definition Classes
    AdaptiveSparkPlanHelper
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  26. def processPlan[T <: QueryPlan[T]](plan: T, append: (String) => Unit): Unit

    Given a input physical plan, performs the following tasks.

    Given a input physical plan, performs the following tasks.

    1. Generates the explain output for the input plan excluding the subquery plans. 2. Generates the explain output for each subquery referenced in the plan.
  27. def removeTags(plan: QueryPlan[_]): Unit
  28. def stripAQEPlan(p: SparkPlan): SparkPlan

    Strip the executePlan of AdaptiveSparkPlanExec leaf node.

    Strip the executePlan of AdaptiveSparkPlanExec leaf node.

    Definition Classes
    AdaptiveSparkPlanHelper
  29. def subqueriesAll(p: SparkPlan): Seq[SparkPlan]

    Returns a sequence containing the subqueries in this plan, also including the (nested) subqueries in its children

    Returns a sequence containing the subqueries in this plan, also including the (nested) subqueries in its children

    Definition Classes
    AdaptiveSparkPlanHelper
  30. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  31. def toString(): String
    Definition Classes
    AnyRef → Any
  32. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped