weixiangsun commented on a change in pull request #8029:
URL: https://github.com/apache/pinot/pull/8029#discussion_r815388675
##########
File path:
pinot-core/src/main/java/org/apache/pinot/core/plan/CombinePlanNode.java
##########
@@ -180,6 +191,8 @@ public BaseCombineOperator run() {
// Selection order-by
return new SelectionOrderByCombineOperator(operators, _queryContext,
_executorService);
}
+ } else if (gapfillType != GapfillUtils.GapfillType.NONE) {
+ return new SelectionOnlyCombineOperator(operators, _queryContext,
_executorService);
Review comment:
We do not need do the sorting on the pinot server. The sorting will be
done broker side.
--
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]