-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-46600][SQL] Move shared code between SqlConf and SqlApiConf to SqlApiConfHelper #44602
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 all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,48 @@ | ||
| /* | ||
| * Licensed to the Apache Software Foundation (ASF) under one or more | ||
| * contributor license agreements. See the NOTICE file distributed with | ||
| * this work for additional information regarding copyright ownership. | ||
| * The ASF licenses this file to You under the Apache License, Version 2.0 | ||
| * (the "License"); you may not use this file except in compliance with | ||
| * the License. You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
| package org.apache.spark.sql.internal | ||
|
|
||
| import java.util.concurrent.atomic.AtomicReference | ||
|
|
||
| /** | ||
| * SqlApiConfHelper is created to avoid a deadlock during a concurrent access to SQLConf and | ||
| * SqlApiConf, which is because SQLConf and SqlApiConf tries to load each other upon | ||
| * initializations. SqlApiConfHelper is private to sql package and is not supposed to be | ||
| * accessed by end users. Variables and methods within SqlApiConfHelper are defined to | ||
| * be used by SQLConf and SqlApiConf only. | ||
| */ | ||
| private[sql] object SqlApiConfHelper { | ||
| // Shared keys. | ||
| val ANSI_ENABLED_KEY: String = "spark.sql.ansi.enabled" | ||
| val LEGACY_TIME_PARSER_POLICY_KEY: String = "spark.sql.legacy.timeParserPolicy" | ||
| val CASE_SENSITIVE_KEY: String = "spark.sql.caseSensitive" | ||
| val SESSION_LOCAL_TIMEZONE_KEY: String = "spark.sql.session.timeZone" | ||
| val LOCAL_RELATION_CACHE_THRESHOLD_KEY: String = "spark.sql.session.localRelationCacheThreshold" | ||
|
|
||
| val confGetter: AtomicReference[() => SqlApiConf] = { | ||
| new AtomicReference[() => SqlApiConf](() => DefaultSqlApiConf) | ||
| } | ||
|
|
||
| def getConfGetter: AtomicReference[() => SqlApiConf] = confGetter | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If this line is called in a JVM before any code touches
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @hvanhovell Do you know if the scenario mentioned here could happen?
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @zsxwing good point! How about this: We make
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @zsxwing I don't think it is an issue. An end user should never touch this object unless they know what they are doing. That is a limitation of this approach, we should document this, and we can add a liniting rule if we must. Just to make sure that we are on the same page. In a normal situation, the initialisation is as follows:
|
||
|
|
||
| /** | ||
| * Sets the active config getter. | ||
| */ | ||
| def setConfGetter(getter: () => SqlApiConf): Unit = { | ||
| confGetter.set(getter) | ||
| } | ||
| } | ||
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.
Can you add some documentation explaining why this is needed? And how this code should never be used by an end-user.
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.
+1 to document the rules to use
SqlApiConfHelper.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.
done