ajithme commented on a change in pull request #27267: [SPARK-30556][SQL] Copy
sparkContext.localproperties to child thread inSubqueryExec.executionContext
URL: https://github.com/apache/spark/pull/27267#discussion_r369484433
##########
File path:
sql/catalyst/src/main/scala/org/apache/spark/sql/internal/StaticSQLConf.scala
##########
@@ -148,6 +148,14 @@ object StaticSQLConf {
.checkValue(thres => thres > 0 && thres <= 128, "The threshold must be
in [0,128].")
.createWithDefault(128)
+ val SUBQUERY_MAX_THREAD_THRESHOLD =
+ buildStaticConf("spark.sql.subquery.maxThreadThreshold")
+ .internal()
+ .doc("The maximum degree of parallelism to execute the subquery. ")
+ .intConf
+ .checkValue(thres => thres > 0 && thres <= 128, "The threshold must be
in [0,128].")
Review comment:
done
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]