marin-ma commented on code in PR #10634:
URL:
https://github.com/apache/incubator-gluten/pull/10634#discussion_r2368954765
##########
backends-velox/src/main/scala/org/apache/gluten/config/VeloxConfig.scala:
##########
@@ -529,6 +529,20 @@ object VeloxConfig {
.booleanConf
.createWithDefault(false)
+ val VELOX_HASHMAP_ABANDON_BUILD_DUPHASH_MIN_ROWS =
+ buildConf("spark.gluten.velox.abandonbuild.noduphashminrows")
+ .experimental()
+ .doc("Experimental: abandon hashmap build if duplicated rows more than
this number.")
+ .intConf
+ .createWithDefault(100000)
+
+ val VELOX_HASHMAP_ABANDON_BUILD_DUPHASH_MIN_PCT =
+ buildConf("spark.gluten.velox.abandonbuild.noduphashminpct")
+ .experimental()
+ .doc("Experimental: abandon hashmap build if duplicated rows are more
than this pct.")
Review Comment:
Perhaps use "percentile" to avoid abbreviations in the doc.
--
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]