kgyrtkirk commented on code in PR #18191: URL: https://github.com/apache/druid/pull/18191#discussion_r2192253857
########## extensions-core/multi-stage-query/src/main/java/org/apache/druid/msq/logical/stages/GroupByStages.java: ########## @@ -0,0 +1,122 @@ +/* + * 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.druid.msq.logical.stages; + +import org.apache.druid.frame.key.KeyColumn; +import org.apache.druid.frame.key.KeyOrder; +import org.apache.druid.java.util.common.granularity.Granularities; +import org.apache.druid.msq.exec.StageProcessor; +import org.apache.druid.msq.logical.LogicalInputSpec; +import org.apache.druid.msq.logical.StageMaker; +import org.apache.druid.msq.querykit.groupby.GroupByPostShuffleStageProcessor; +import org.apache.druid.msq.querykit.groupby.GroupByPreShuffleStageProcessor; +import org.apache.druid.query.TableDataSource; +import org.apache.druid.query.groupby.GroupByQuery; +import org.apache.druid.query.spec.QuerySegmentSpec; +import org.apache.druid.segment.column.RowSignature; +import org.apache.druid.segment.column.RowSignature.Finalization; +import org.apache.druid.sql.calcite.aggregation.DimensionExpression; +import org.apache.druid.sql.calcite.planner.querygen.DruidQueryGenerator.DruidNodeStack; +import org.apache.druid.sql.calcite.rel.Grouping; + +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; + +public class GroupByStages +{ + public static class PreShuffleStage extends ProjectStage + { + private GroupByQuery gby; + + public PreShuffleStage(ProjectStage projectStage, GroupByQuery gby) + { + super(projectStage, gby.getResultRowSignature(Finalization.NO)); + this.gby = gby; + } + + @Override + public LogicalStage extendWith(DruidNodeStack stack) + { + return null; + } + + @Override + public StageProcessor<?, ?> buildStageProcessor(StageMaker stageMaker) + { + return new GroupByPreShuffleStageProcessor(gby); + } + } + + static class PostShuffleStage extends AbstractFrameProcessorStage + { + private GroupByQuery gby; + + public PostShuffleStage(LogicalStage inputStage, GroupByQuery gby, RowSignature outputSignature) + { + super(outputSignature, LogicalInputSpec.of(inputStage)); + this.gby = gby; + } + + @Override + public LogicalStage extendWith(DruidNodeStack stack) + { + return null; + } + + @Override + public StageProcessor<?, ?> buildStageProcessor(StageMaker stageMaker) + { + return new GroupByPostShuffleStageProcessor(gby); + } + } + + public static LogicalStage buildStages(ProjectStage projectStage, Grouping grouping) + { + GroupByQuery gby = makeGbyQuery(projectStage, grouping); + PreShuffleStage aggStage = new PreShuffleStage(projectStage, gby.withPostAggregatorSpecs(Collections.emptyList())); + SortStage sortStage = new SortStage(aggStage, getKeyColumns(grouping.getDimensions())); + PostShuffleStage finalAggStage = new PostShuffleStage(sortStage, gby, grouping.getOutputRowSignature()); + return finalAggStage; + } + + private static GroupByQuery makeGbyQuery(ProjectStage projectStage, Grouping grouping) + { + GroupByQuery.Builder builder = GroupByQuery.builder(); + builder.setDimensions(grouping.getDimensionSpecs()); + builder.setQuerySegmentSpec(QuerySegmentSpec.ETERNITY); + builder.setGranularity(Granularities.ALL); Review Comment: insert is not yet supported - and I think when it will be ; it should be different: I think the presence of those context keys are there due to the fact that insert needed some tweaks to the final writer - this pattern have added some extra things here and there. I imagine that adding a `TableModify` or something similar top level element describing the high level `insert` details could provide a more natural home for these details. -- 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]
