Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[VL] Minor: Fix documentation of flushable partial aggregate #7353

Merged
merged 10 commits into from
Sep 26, 2024
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
Loading