-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-18120 ][SQL] Call QueryExecutionListener callback methods for … #16664
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
751ded0
b0392ed
752125a
ecf9f34
a0c7c22
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -660,13 +660,21 @@ object SQLConf { | |
| .booleanConf | ||
| .createWithDefault(false) | ||
|
|
||
|
|
||
| val QUERY_EXECUTION_LISTENERS = | ||
| ConfigBuilder("spark.sql.queryExecutionListeners") | ||
| .doc("QueryExecutionListeners to be attached to the SparkSession") | ||
|
||
| .stringConf | ||
| .toSequence | ||
| .createWithDefault(Nil) | ||
|
|
||
| val SESSION_LOCAL_TIMEZONE = | ||
| SQLConfigBuilder("spark.sql.session.timeZone") | ||
| .doc("""The ID of session local timezone, e.g. "GMT", "America/Los_Angeles", etc.""") | ||
| .stringConf | ||
| .createWithDefault(TimeZone.getDefault().getID()) | ||
|
|
||
|
|
||
|
||
| object Deprecated { | ||
| val MAPRED_REDUCE_TASKS = "mapred.reduce.tasks" | ||
| } | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we can put it into StaticSQLConf