cloud-fan commented on code in PR #57602:
URL: https://github.com/apache/spark/pull/57602#discussion_r3702428511
##########
sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala:
##########
@@ -4527,6 +4527,20 @@ object SQLConf {
"The threshold of window group limit must be -1, 0 or positive
integer.")
.createWithDefault(1000)
+ val BYPASS_PARTIAL_WINDOW_GROUP_LIMIT =
+ buildConf("spark.sql.execution.bypassPartialWindowGroupLimit")
Review Comment:
You can add this conf in your spark fork. This is not a feature rollout
conf, as we clearly can not bypass partial window group limit always.
We should either use query hint, or build a real optimization that only skip
partial window group limit when it's beneficial (e.g. stats-based decision, or
runtime adaptivity).
--
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]