zhztheplayer commented on code in PR #9035:
URL: https://github.com/apache/incubator-gluten/pull/9035#discussion_r2048518489
##########
backends-velox/src/main/scala/org/apache/gluten/backendsapi/velox/VeloxSparkPlanExecApi.scala:
##########
@@ -345,19 +345,6 @@ class VeloxSparkPlanExecApi extends SparkPlanExecApi {
}
}
- def maybeAddAppendBatchesExec(plan: SparkPlan): SparkPlan = {
- plan match {
- case shuffle: ColumnarShuffleExchangeExec
- if !shuffle.useSortBasedShuffle &&
- VeloxConfig.get.veloxResizeBatchesShuffleInput =>
- val range = VeloxConfig.get.veloxResizeBatchesShuffleInputRange
- val appendBatches =
- VeloxResizeBatchesExec(shuffle.child, range.min, range.max)
- shuffle.withNewChildren(Seq(appendBatches))
- case _ => plan
- }
- }
-
Review Comment:
Thanks for factoring this out!
--
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]