File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
sql/core/src/main/scala/org/apache/spark/sql/execution Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ package org.apache.spark.sql.execution
2020import java .util .concurrent .ConcurrentHashMap
2121import java .util .concurrent .atomic .AtomicLong
2222
23- import org .apache .spark .MapOutputTrackerMaster
2423import org .apache .spark .SparkEnv
2524import org .apache .spark .internal .Logging
2625import org .apache .spark .sql .SparkSession
@@ -81,7 +80,8 @@ object SQLExecution extends Logging{
8180 SparkPlanInfo .fromSparkPlan(queryExecution.executedPlan), System .currentTimeMillis()))
8281
8382 sc.listenerBus.post(PostQueryExecutionForKylin (
84- sc.getLocalProperty(N_EXECUTION_ID_KEY ),
83+ sc.getLocalProperties,
84+ executionId,
8585 queryExecution))
8686 try {
8787 body
Original file line number Diff line number Diff line change 1717
1818package org .apache .spark .sql .execution .ui
1919
20+ import java .util .Properties
21+
2022import com .fasterxml .jackson .databind .JavaType
2123import com .fasterxml .jackson .databind .`type` .TypeFactory
2224import com .fasterxml .jackson .databind .annotation .JsonDeserialize
@@ -38,7 +40,8 @@ case class SparkListenerSQLExecutionStart(
3840
3941@ DeveloperApi
4042case class PostQueryExecutionForKylin (
41- nExecutionId : String = " " ,
43+ localProperties : Properties ,
44+ executionId : Long ,
4245 queryExecution : QueryExecution = null )
4346 extends SparkListenerEvent {
4447
You can’t perform that action at this time.
0 commit comments