JoshRosen commented on code in PR #37661:
URL: https://github.com/apache/spark/pull/37661#discussion_r955355365


##########
sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala:
##########
@@ -526,6 +526,15 @@ object SQLConf {
     .checkValue(_ >= 1, "The shuffle hash join factor cannot be negative.")
     .createWithDefault(3)
 
+  val INITIAL_NUM_PARTITIONS = 
buildConf("spark.sql.limit.initialNumPartitions")
+    .internal()
+    .doc("Initial number of partitions to try when executing a take on a 
query. Higher values " +

Review Comment:
   Here I think we should just copy the wording from the config below, e.g.
   
   ```
   Higher values lead to more partitions read. Lower values might lead to " +
         "longer execution times as more jobs will be run"
   ```



-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to