We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04fa122 commit 0740f28Copy full SHA for 0740f28
sql/core/src/main/scala/org/apache/spark/sql/SQLConf.scala
@@ -50,8 +50,7 @@ trait SQLConf {
50
/** ********************** SQLConf functionality methods ************ */
51
52
@transient
53
- private val settings = java.util.Collections.synchronizedMap(
54
- new java.util.HashMap[String, String]())
+ private val settings = new java.util.concurrent.ConcurrentHashMap[String, String]()
55
56
def set(props: Properties): Unit = {
57
props.asScala.foreach { case (k, v) => this.settings.put(k, v) }
0 commit comments