关注 spark技术分享,
撸spark源码 玩spark最佳实践

BaseSessionStateBuilder — Generic Builder of SessionState

BaseSessionStateBuilder — Generic Builder of SessionState

BaseSessionStateBuilder is the contract of builder objects that coordinate construction of a new SessionState.

Table 1. BaseSessionStateBuilders
BaseSessionStateBuilder Description

SessionStateBuilder

HiveSessionStateBuilder

BaseSessionStateBuilder is created when SparkSession is requested for a SessionState.


BaseSessionStateBuilder requires that implementations define newBuilder method that SparkSession uses (indirectly) when requested for the SessionState (per spark.sql.catalogImplementation internal configuration property).

Note
BaseSessionStateBuilder and spark.sql.catalogImplementation configuration property allow for Hive and non-Hive Spark deployments.

BaseSessionStateBuilder holds properties that (together with newBuilder) are used to create a SessionState.

Table 2. BaseSessionStateBuilder’s Properties
Name Description

analyzer

Logical analyzer

catalog

Used to create Analyzer, Optimizer and a SessionState itself

Note
HiveSessionStateBuilder manages its own Hive-aware HiveSessionCatalog.

conf

SQLConf

customOperatorOptimizationRules

Custom operator optimization rules to add to the base Operator Optimization batch.

When requested for the custom rules, customOperatorOptimizationRules simply requests the SparkSessionExtensions to buildOptimizerRules.

experimentalMethods

ExperimentalMethods

extensions

SparkSessionExtensions

functionRegistry

FunctionRegistry

listenerManager

ExecutionListenerManager

optimizer

SparkOptimizer (that is downcast to the base Optimizer) that is created with the SessionCatalog and the ExperimentalMethods.

Note that the SparkOptimizer adds the customOperatorOptimizationRules to the operator optimization rules.

optimizer is used when BaseSessionStateBuilder is requested to create a SessionState (for the optimizerBuilder function to create an Optimizer when requested for the Optimizer).

planner

SparkPlanner

resourceLoader

SessionResourceLoader

sqlParser

ParserInterface

streamingQueryManager

Spark Structured Streaming’s StreamingQueryManager

udfRegistration

UDFRegistration

Note

BaseSessionStateBuilder defines a type alias NewBuilder for a function to create a BaseSessionStateBuilder.

Note
BaseSessionStateBuilder is an experimental and unstable API.

Creating Function to Build SessionState — createClone Method

createClone gives a function of SparkSession and SessionState that executes newBuilder followed by build.

Note
createClone is used exclusively when BaseSessionStateBuilder is requested for a SessionState

Creating SessionState Instance — build Method

build creates a SessionState with the following:

Note

build is used when:

Creating BaseSessionStateBuilder Instance

BaseSessionStateBuilder takes the following when created:

Getting Function to Create QueryExecution For LogicalPlan — createQueryExecution Method

createQueryExecution simply returns a function that takes a LogicalPlan and creates a QueryExecution with the SparkSession and the logical plan.

Note
createQueryExecution is used exclusively when BaseSessionStateBuilder is requested to create a SessionState instance.
赞(0) 打赏
未经允许不得转载:spark技术分享 » BaseSessionStateBuilder — Generic Builder of SessionState
分享到: 更多 (0)

关注公众号:spark技术分享

联系我们联系我们

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏