package ui
- Alphabetic
- Public
- Protected
Type Members
- class ExecutionPage extends WebUIPage with Logging
- class SQLAppStatusListener extends SparkListener with Logging
- 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.
- class SQLExecutionUIData extends AnyRef
- class SQLHistoryServerPlugin extends AppHistoryServerPlugin
- case class SQLPlanMetric(name: String, accumulatorId: Long, metricType: String) extends Product with Serializable
- class SQLTab extends SparkUITab with Logging
- 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()
- case class SparkListenerSQLAdaptiveExecutionUpdate(executionId: Long, physicalPlanDescription: String, sparkPlanInfo: SparkPlanInfo) extends SparkListenerEvent with Product with Serializable
- Annotations
- @DeveloperApi()
- case class SparkListenerSQLAdaptiveSQLMetricUpdates(executionId: Long, sqlPlanMetrics: Seq[SQLPlanMetric]) extends SparkListenerEvent with Product with Serializable
- Annotations
- @DeveloperApi()
- case class SparkListenerSQLExecutionEnd(executionId: Long, time: Long) extends SparkListenerEvent with Product with Serializable
- Annotations
- @DeveloperApi()
- 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()
- 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.
- class SparkPlanGraphCluster extends SparkPlanGraphNode
Represent a tree of SparkPlan for WholeStageCodegen.
- class SparkPlanGraphClusterWrapper extends AnyRef
- 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, andtoId
is the parent node id. - class SparkPlanGraphNode extends AnyRef
Represent a node in the SparkPlan tree, along with its metrics.
- class SparkPlanGraphNodeWrapper extends AnyRef
Only one of the values should be set.
- class SparkPlanGraphWrapper extends AnyRef
- class StreamingQueryHistoryServerPlugin extends AppHistoryServerPlugin
- 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
- object SQLTab
- object SparkPlanGraph extends Serializable