ulysses-you commented on code in PR #5321:
URL: https://github.com/apache/kyuubi/pull/5321#discussion_r1349478932


##########
extensions/spark/kyuubi-extension-spark-common/src/main/scala/org/apache/kyuubi/sql/KyuubiSQLConf.scala:
##########
@@ -273,4 +273,15 @@ object KyuubiSQLConf {
       .version("1.8.0")
       .stringConf
       .createOptional
+
+  val GLUTEN_FALLBACK_OPERATOR_THRESHOLD =
+    buildConf("spark.sql.gluten.fallbackOperatorThreshold")
+      .doc("The threshold of fallback operator. If the number of fallback 
operator is " +
+        "bigger than this threshold, we will fallback to original plan." +
+        "Note: Gluten-Related extension is experimental and under rapid 
development," +
+        "this configuration is added to allow user to control extension, not " 
+
+        "intended exposing to end users, it may be removed in anytime.")
+      .version("1.8.0")
+      .intConf
+      .createWithDefault(5)

Review Comment:
   let's use `Int.MaxValue` to avoid breaking something



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