Packages

  • package root
    Definition Classes
    root
  • package org
    Definition Classes
    root
  • package apache
    Definition Classes
    org
  • package spark
    Definition Classes
    apache
  • package sql

    Allows the execution of relational queries, including those expressed in SQL using Spark.

    Allows the execution of relational queries, including those expressed in SQL using Spark.

    Definition Classes
    spark
  • package execution

    The physical execution component of Spark SQL.

    The physical execution component of Spark SQL. Note that this is a private package. All classes in catalyst are considered an internal API to Spark SQL and are subject to change between minor releases.

    Definition Classes
    sql
  • class QueryExecution extends AnyRef

    The primary workflow for executing relational queries using Spark.

    The primary workflow for executing relational queries using Spark. Designed to allow easy access to the intermediate phases of query execution for developers.

    While this is not a public class, we should avoid changing the function names for the sake of changing them, because a lot of developers use the feature for debugging.

    Definition Classes
    execution
  • debug

object debug

A special namespace for commands that can be used to debug query execution.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. debug
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def codegen(): Unit

    Prints to stdout all the generated code found in this plan (i.e.

    Prints to stdout all the generated code found in this plan (i.e. the output of each WholeStageCodegen subtree).

  2. def codegenToSeq(): Seq[(String, String, ByteCodeStats)]

    Get WholeStageCodegenExec subtrees and the codegen in a query plan

    Get WholeStageCodegenExec subtrees and the codegen in a query plan

    returns

    Sequence of WholeStageCodegen subtrees and corresponding codegen

  3. def toFile(path: String, maxFields: Int = Int.MaxValue): Unit

    Dumps debug information about query execution into the specified file.

    Dumps debug information about query execution into the specified file.

    maxFields

    maximum number of fields converted to string representation.