-
Notifications
You must be signed in to change notification settings - Fork 444
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[VL] Add FlushableHashAggregateExecTransformer to map Velox's partial…
… aggregation which supports flushing and abandoning (#4130)
- Loading branch information
1 parent
d1d976b
commit d8248ea
Showing
20 changed files
with
397 additions
and
164 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
56 changes: 56 additions & 0 deletions
56
backends-velox/src/main/scala/org/apache/spark/sql/catalyst/FlushableHashAggregateRule.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.apache.spark.sql.catalyst | ||
|
||
import io.glutenproject.execution.{FlushableHashAggregateExecTransformer, RegularHashAggregateExecTransformer} | ||
|
||
import org.apache.spark.sql.SparkSession | ||
import org.apache.spark.sql.catalyst.expressions.aggregate.{Partial, PartialMerge} | ||
import org.apache.spark.sql.catalyst.rules.Rule | ||
import org.apache.spark.sql.execution.SparkPlan | ||
import org.apache.spark.sql.execution.exchange.ShuffleExchangeLike | ||
|
||
/** | ||
* To transform regular aggregation to intermediate aggregation that internally enables | ||
* optimizations such as flushing and abandoning. | ||
* | ||
* Currently not in use. Will be enabled via a configuration after necessary verification is done. | ||
*/ | ||
case class FlushableHashAggregateRule(session: SparkSession) extends Rule[SparkPlan] { | ||
override def apply(plan: SparkPlan): SparkPlan = plan.transformUp { | ||
case shuffle: ShuffleExchangeLike => | ||
// If an exchange follows a hash aggregate in which all functions are in partial mode, | ||
// then it's safe to convert the hash aggregate to intermediate hash aggregate. | ||
shuffle.child match { | ||
case h: RegularHashAggregateExecTransformer => | ||
if (h.aggregateExpressions.forall(p => p.mode == Partial || p.mode == PartialMerge)) { | ||
shuffle.withNewChildren( | ||
Seq(FlushableHashAggregateExecTransformer( | ||
h.requiredChildDistributionExpressions, | ||
h.groupingExpressions, | ||
h.aggregateExpressions, | ||
h.aggregateAttributes, | ||
h.initialInputBufferOffset, | ||
h.resultExpressions, | ||
h.child | ||
))) | ||
} else { | ||
shuffle | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.