Skip to content

Commit

Permalink
[VL] Minor: Fix documentation of flushable partial aggregate (#7353)
Browse files Browse the repository at this point in the history
  • Loading branch information
surnaik authored Sep 26, 2024
1 parent 84da616 commit 9093e85
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1821,8 +1821,8 @@ object GlutenConfig {
buildConf("spark.gluten.sql.columnar.backend.velox.abandonPartialAggregationMinPct")
.internal()
.doc(
"If partial aggregation input rows number greater than this value, "
+ " partial aggregation may be early abandoned. Note: this option only works when " +
"If partial aggregation aggregationPct greater than this value, "
+ "partial aggregation may be early abandoned. Note: this option only works when " +
"flushable partial aggregation is enabled. Ignored when " +
"spark.gluten.sql.columnar.backend.velox.flushablePartialAggregation=false.")
.intConf
Expand All @@ -1832,8 +1832,8 @@ object GlutenConfig {
buildConf("spark.gluten.sql.columnar.backend.velox.abandonPartialAggregationMinRows")
.internal()
.doc(
"If partial aggregation aggregationPct greater than this value, "
+ "partial aggregation may be early abandoned. Note: this option only works when " +
"If partial aggregation input rows number greater than this value, "
+ " partial aggregation may be early abandoned. Note: this option only works when " +
"flushable partial aggregation is enabled. Ignored when " +
"spark.gluten.sql.columnar.backend.velox.flushablePartialAggregation=false.")
.intConf
Expand Down

0 comments on commit 9093e85

Please sign in to comment.