Packages

package ui

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. class ExecutionPage extends WebUIPage with Logging
  2. class SQLAppStatusListener extends SparkListener with Logging
  3. class SQLAppStatusStore extends AnyRef

    Provides a view of a KVStore with methods that make it easy to query SQL-specific state.

    Provides a view of a KVStore with methods that make it easy to query SQL-specific state. There's no state kept in this class, so it's ok to have multiple instances of it in an application.

  4. class SQLExecutionUIData extends AnyRef
  5. class SQLHistoryServerPlugin extends AppHistoryServerPlugin
  6. case class SQLPlanMetric(name: String, accumulatorId: Long, metricType: String) extends Product with Serializable
  7. class SQLTab extends SparkUITab with Logging
  8. case class SparkListenerDriverAccumUpdates(executionId: Long, accumUpdates: Seq[(Long, Long)]) extends SparkListenerEvent with Product with Serializable

    A message used to update SQL metric value for driver-side updates (which doesn't get reflected automatically).

    A message used to update SQL metric value for driver-side updates (which doesn't get reflected automatically).

    executionId

    The execution id for a query, so we can find the query plan.

    accumUpdates

    Map from accumulator id to the metric value (metrics are always 64-bit ints).

    Annotations
    @DeveloperApi()
  9. case class SparkListenerSQLAdaptiveExecutionUpdate(executionId: Long, physicalPlanDescription: String, sparkPlanInfo: SparkPlanInfo) extends SparkListenerEvent with Product with Serializable
    Annotations
    @DeveloperApi()
  10. case class SparkListenerSQLAdaptiveSQLMetricUpdates(executionId: Long, sqlPlanMetrics: Seq[SQLPlanMetric]) extends SparkListenerEvent with Product with Serializable
    Annotations
    @DeveloperApi()
  11. case class SparkListenerSQLExecutionEnd(executionId: Long, time: Long) extends SparkListenerEvent with Product with Serializable
    Annotations
    @DeveloperApi()
  12. case class SparkListenerSQLExecutionStart(executionId: Long, description: String, details: String, physicalPlanDescription: String, sparkPlanInfo: SparkPlanInfo, time: Long, modifiedConfigs: Map[String, String] = Map.empty) extends SparkListenerEvent with Product with Serializable
    Annotations
    @DeveloperApi()
  13. case class SparkPlanGraph(nodes: Seq[SparkPlanGraphNode], edges: Seq[SparkPlanGraphEdge]) extends Product with Serializable

    A graph used for storing information of an executionPlan of DataFrame.

    A graph used for storing information of an executionPlan of DataFrame.

    Each graph is defined with a set of nodes and a set of edges. Each node represents a node in the SparkPlan tree, and each edge represents a parent-child relationship between two nodes.

  14. class SparkPlanGraphCluster extends SparkPlanGraphNode

    Represent a tree of SparkPlan for WholeStageCodegen.

  15. class SparkPlanGraphClusterWrapper extends AnyRef
  16. case class SparkPlanGraphEdge(fromId: Long, toId: Long) extends Product with Serializable

    Represent an edge in the SparkPlan tree.

    Represent an edge in the SparkPlan tree. fromId is the child node id, and toId is the parent node id.

  17. class SparkPlanGraphNode extends AnyRef

    Represent a node in the SparkPlan tree, along with its metrics.

  18. class SparkPlanGraphNodeWrapper extends AnyRef

    Only one of the values should be set.

  19. class SparkPlanGraphWrapper extends AnyRef
  20. class StreamingQueryHistoryServerPlugin extends AppHistoryServerPlugin
  21. class StreamingQueryStatusStore extends AnyRef

    Provides a view of a KVStore with methods that make it easy to query Streaming Query state.

    Provides a view of a KVStore with methods that make it easy to query Streaming Query state. There's no state kept in this class, so it's ok to have multiple instances of it in an application.

Value Members

  1. object SQLTab
  2. object SparkPlanGraph extends Serializable

Ungrouped