-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Introduce operator of window function. #14213
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
Changes from all commits
65d341c
e8c2a14
121439f
6366d71
e558834
0eca37a
54571b2
b4741a1
80fa918
b79a557
b68f2c7
b1d7db8
55684e8
465bce7
922d3c3
fe21202
d5e5622
e05b79d
6cb7d00
488a3ae
3839bdf
4849895
a7db416
af656e2
631a367
7d4ae3c
ddf84cd
ca9b93c
c937900
9a785d7
3a08721
5d9c5b0
07f1d9f
6f4ebed
cb79108
7cfb26b
e7e35e5
3499f05
35f4d25
f62b41e
74c61e9
792c1e6
7d34c3b
29983b6
38f31a3
e04917c
241e6ec
42f4ec7
2b45b3a
8023f1d
5967017
fae3a63
aa55f6d
0f1912d
46c525f
3ba4a72
5d376ae
28a58ad
1b2270d
b2ef78b
e406ebd
5782043
f7471f3
6b07f8e
75d0454
5f42807
c5bc897
a4c97ab
ab111ad
be505c3
d8381b4
c12995e
18d240d
da891c9
2422d2e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| /* | ||
| * 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.iotdb.db.queryengine.execution.operator.process.window.function; | ||
|
|
||
| import org.apache.iotdb.db.queryengine.execution.operator.process.window.partition.Partition; | ||
|
|
||
| import org.apache.tsfile.block.column.ColumnBuilder; | ||
|
|
||
| public interface WindowFunction { | ||
| void reset(); | ||
|
|
||
| void transform( | ||
| Partition partition, | ||
| ColumnBuilder builder, | ||
| int index, | ||
| int frameStart, | ||
| int frameEnd, | ||
| int peerGroupStart, | ||
| int peerGroupEnd); | ||
|
|
||
| default boolean needPeerGroup() { | ||
| return true; | ||
| } | ||
|
|
||
| default boolean needFrame() { | ||
| return true; | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,113 @@ | ||
| /* | ||
| * 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.iotdb.db.queryengine.execution.operator.process.window.function.aggregate; | ||
|
|
||
| import org.apache.iotdb.db.queryengine.execution.operator.process.window.function.WindowFunction; | ||
| import org.apache.iotdb.db.queryengine.execution.operator.process.window.partition.Partition; | ||
|
|
||
| import org.apache.tsfile.block.column.ColumnBuilder; | ||
|
|
||
| public class AggregationWindowFunction implements WindowFunction { | ||
| private final WindowAggregator aggregator; | ||
| private int currentStart; | ||
| private int currentEnd; | ||
|
|
||
| public AggregationWindowFunction(WindowAggregator aggregator) { | ||
| this.aggregator = aggregator; | ||
| reset(); | ||
| } | ||
|
|
||
| @Override | ||
| public void reset() { | ||
| aggregator.reset(); | ||
| currentStart = -1; | ||
| currentEnd = -1; | ||
| } | ||
|
|
||
| @Override | ||
| public void transform( | ||
| Partition partition, | ||
| ColumnBuilder builder, | ||
| int index, | ||
| int frameStart, | ||
| int frameEnd, | ||
| int peerGroupStart, | ||
| int peerGroupEnd) { | ||
| if (frameStart < 0) { | ||
| // Empty frame | ||
| reset(); | ||
| } else if (frameStart == currentStart && frameEnd >= currentEnd) { | ||
| // Frame expansion | ||
| if (frameEnd != currentEnd) { | ||
| Partition region = partition.getRegion(currentEnd + 1, frameEnd); | ||
| aggregator.addInput(region); | ||
| currentEnd = frameEnd; | ||
| } | ||
| } else { | ||
| buildNewFrame(partition, frameStart, frameEnd); | ||
| } | ||
|
|
||
| aggregator.evaluate(builder); | ||
| } | ||
|
|
||
| private void buildNewFrame(Partition partition, int frameStart, int frameEnd) { | ||
| if (aggregator.removable()) { | ||
| int prefix = Math.abs(currentStart - frameStart); | ||
| int suffix = Math.abs(currentEnd - frameEnd); | ||
| int frameLength = frameEnd - frameStart + 1; | ||
|
|
||
| // Compare remove && add cost with re-computation | ||
| if (frameLength > prefix + suffix) { | ||
| if (currentStart < frameStart) { | ||
| Partition region = partition.getRegion(currentStart, frameStart - 1); | ||
| aggregator.removeInput(region); | ||
| } else if (currentStart > frameStart) { | ||
| Partition region = partition.getRegion(frameStart, currentStart - 1); | ||
| aggregator.addInput(region); | ||
| } // Do nothing when currentStart == frameStart | ||
|
|
||
| if (frameEnd < currentEnd) { | ||
| Partition region = partition.getRegion(frameEnd + 1, currentEnd); | ||
| aggregator.removeInput(region); | ||
| } else if (frameEnd > currentEnd) { | ||
| Partition region = partition.getRegion(currentEnd + 1, frameEnd); | ||
| aggregator.addInput(region); | ||
| } // Do nothing when frameEnd == currentEnd | ||
|
|
||
| currentStart = frameStart; | ||
| currentEnd = frameEnd; | ||
| return; | ||
| } | ||
| } | ||
|
|
||
| // Re-compute | ||
| aggregator.reset(); | ||
| Partition region = partition.getRegion(frameStart, frameEnd); | ||
| aggregator.addInput(region); | ||
|
|
||
| currentStart = frameStart; | ||
| currentEnd = frameEnd; | ||
| } | ||
|
|
||
| @Override | ||
| public boolean needPeerGroup() { | ||
| return false; | ||
| } | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,126 @@ | ||
| /* | ||
| * 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.iotdb.db.queryengine.execution.operator.process.window.function.aggregate; | ||
|
|
||
| import org.apache.iotdb.db.queryengine.execution.operator.process.window.partition.Partition; | ||
| import org.apache.iotdb.db.queryengine.execution.operator.source.relational.aggregation.AggregationMask; | ||
| import org.apache.iotdb.db.queryengine.execution.operator.source.relational.aggregation.TableAccumulator; | ||
|
|
||
| import com.google.common.primitives.Ints; | ||
| import org.apache.tsfile.block.column.Column; | ||
| import org.apache.tsfile.block.column.ColumnBuilder; | ||
| import org.apache.tsfile.enums.TSDataType; | ||
| import org.apache.tsfile.file.metadata.statistics.Statistics; | ||
| import org.apache.tsfile.read.common.block.column.RunLengthEncodedColumn; | ||
|
|
||
| import java.util.List; | ||
|
|
||
| import static java.util.Objects.requireNonNull; | ||
| import static org.apache.iotdb.db.queryengine.execution.operator.source.relational.TableScanOperator.TIME_COLUMN_TEMPLATE; | ||
|
|
||
| public class WindowAggregator { | ||
| private final TableAccumulator accumulator; | ||
| private final TSDataType outputType; | ||
| private final int[] inputChannels; | ||
|
|
||
| public WindowAggregator( | ||
| TableAccumulator accumulator, TSDataType outputType, List<Integer> inputChannels) { | ||
| this.accumulator = requireNonNull(accumulator, "accumulator is null"); | ||
| this.outputType = requireNonNull(outputType, "intermediateType is null"); | ||
| this.inputChannels = Ints.toArray(requireNonNull(inputChannels, "inputChannels is null")); | ||
| } | ||
|
|
||
| public TSDataType getType() { | ||
| return outputType; | ||
| } | ||
|
|
||
| public void addInput(Partition partition) { | ||
| List<Column[]> allColumns = partition.getAllColumns(); | ||
| for (Column[] columns : allColumns) { | ||
| addInput(columns); | ||
| } | ||
| } | ||
|
|
||
| public void addInput(Column[] columns) { | ||
| Column[] arguments = new Column[inputChannels.length]; | ||
| for (int i = 0; i < inputChannels.length; i++) { | ||
| arguments[i] = columns[inputChannels[i]]; | ||
| } | ||
|
|
||
| // Process count(*) | ||
| int count = columns[0].getPositionCount(); | ||
| if (arguments.length == 0) { | ||
| arguments = new Column[] {new RunLengthEncodedColumn(TIME_COLUMN_TEMPLATE, count)}; | ||
| } | ||
|
|
||
| AggregationMask mask = AggregationMask.createSelectAll(count); | ||
| accumulator.addInput(arguments, mask); | ||
| } | ||
|
|
||
| public void removeInput(Partition partition) { | ||
| List<Column[]> allColumns = partition.getAllColumns(); | ||
| for (Column[] columns : allColumns) { | ||
| removeInput(columns); | ||
| } | ||
| } | ||
|
|
||
| private void removeInput(Column[] columns) { | ||
| Column[] arguments = new Column[inputChannels.length]; | ||
| for (int i = 0; i < inputChannels.length; i++) { | ||
| arguments[i] = columns[inputChannels[i]]; | ||
| } | ||
|
|
||
| // Process count(*) | ||
| int count = columns[0].getPositionCount(); | ||
| if (arguments.length == 0) { | ||
| arguments = new Column[] {new RunLengthEncodedColumn(TIME_COLUMN_TEMPLATE, count)}; | ||
| } | ||
|
|
||
| accumulator.removeInput(arguments); | ||
| } | ||
|
|
||
| public void evaluate(ColumnBuilder columnBuilder) { | ||
| accumulator.evaluateFinal(columnBuilder); | ||
| } | ||
|
|
||
| public void processStatistics(Statistics[] statistics) { | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can WindowAggregator use statistics?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Theoretically yes, but it's really rare. A frame must not be smaller than a chunk/page/tsfile so that it can use its statistics. So I choose to remain this method. |
||
| accumulator.addStatistics(statistics); | ||
| } | ||
|
|
||
| public boolean hasFinalResult() { | ||
| return accumulator.hasFinalResult(); | ||
| } | ||
|
|
||
| public void reset() { | ||
| accumulator.reset(); | ||
| } | ||
|
|
||
| public boolean removable() { | ||
| return accumulator.removable(); | ||
| } | ||
|
|
||
| public long getEstimatedSize() { | ||
| return accumulator.getEstimatedSize(); | ||
| } | ||
|
|
||
| public int getChannelCount() { | ||
| return this.inputChannels.length; | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,52 @@ | ||
| /* | ||
| * 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.iotdb.db.queryengine.execution.operator.process.window.function.rank; | ||
|
|
||
| import org.apache.iotdb.db.queryengine.execution.operator.process.window.partition.Partition; | ||
|
|
||
| import org.apache.tsfile.block.column.ColumnBuilder; | ||
|
|
||
| public class CumeDistFunction extends RankWindowFunction { | ||
| private long count; | ||
|
|
||
| public CumeDistFunction() { | ||
| reset(); | ||
| } | ||
|
|
||
| @Override | ||
| public void reset() { | ||
| super.reset(); | ||
| count = 0; | ||
| } | ||
|
|
||
| @Override | ||
| public void transform( | ||
| Partition partition, | ||
| ColumnBuilder builder, | ||
| int index, | ||
| boolean isNewPeerGroup, | ||
| int peerGroupCount) { | ||
| if (isNewPeerGroup) { | ||
| count += peerGroupCount; | ||
| } | ||
|
|
||
| builder.writeDouble(((double) count) / partition.getPositionCount()); | ||
| } | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,52 @@ | ||
| /* | ||
| * 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.iotdb.db.queryengine.execution.operator.process.window.function.rank; | ||
|
|
||
| import org.apache.iotdb.db.queryengine.execution.operator.process.window.partition.Partition; | ||
|
|
||
| import org.apache.tsfile.block.column.ColumnBuilder; | ||
|
|
||
| public class DenseRankFunction extends RankWindowFunction { | ||
| private long rank; | ||
|
|
||
| public DenseRankFunction() { | ||
| reset(); | ||
| } | ||
|
|
||
| @Override | ||
| public void reset() { | ||
| super.reset(); | ||
| rank = 0; | ||
| } | ||
|
|
||
| @Override | ||
| public void transform( | ||
| Partition partition, | ||
| ColumnBuilder builder, | ||
| int index, | ||
| boolean isNewPeerGroup, | ||
| int peerGroupCount) { | ||
| if (isNewPeerGroup) { | ||
| rank++; | ||
| } | ||
|
|
||
| builder.writeLong(rank); | ||
| } | ||
| } |
Uh oh!
There was an error while loading. Please reload this page.