blob: f22db68a166fa8e0f030b23c8da0ad7657ed797d [file] [log] [blame]
/*
* 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.join;
import org.apache.iotdb.db.queryengine.execution.operator.Operator;
import org.apache.iotdb.db.queryengine.execution.operator.OperatorContext;
import org.apache.iotdb.db.queryengine.execution.operator.process.ProcessOperator;
import org.apache.iotdb.db.queryengine.execution.operator.process.join.merge.TimeComparator;
import com.google.common.util.concurrent.ListenableFuture;
import org.apache.tsfile.block.column.Column;
import org.apache.tsfile.block.column.ColumnBuilder;
import org.apache.tsfile.common.conf.TSFileDescriptor;
import org.apache.tsfile.enums.TSDataType;
import org.apache.tsfile.read.common.block.TsBlock;
import org.apache.tsfile.read.common.block.TsBlockBuilder;
import org.apache.tsfile.read.common.block.column.TimeColumn;
import org.apache.tsfile.read.common.block.column.TimeColumnBuilder;
import java.util.List;
import java.util.concurrent.TimeUnit;
import static com.google.common.util.concurrent.Futures.successfulAsList;
public class LeftOuterTimeJoinOperator implements ProcessOperator {
private final OperatorContext operatorContext;
private final int outputColumnCount;
private final TimeComparator comparator;
private final TsBlockBuilder resultBuilder;
private final Operator left;
private final int leftColumnCount;
private TsBlock leftTsBlock;
// start index of leftTsBlock
private int leftIndex;
private final Operator right;
private TsBlock rightTsBlock;
// start index of rightTsBlock
private int rightIndex;
private boolean rightFinished = false;
private final long maxReturnSize =
TSFileDescriptor.getInstance().getConfig().getMaxTsBlockSizeInBytes();
public LeftOuterTimeJoinOperator(
OperatorContext operatorContext,
Operator leftChild,
int leftColumnCount,
Operator rightChild,
List<TSDataType> dataTypes,
TimeComparator comparator) {
this.operatorContext = operatorContext;
this.resultBuilder = new TsBlockBuilder(dataTypes);
this.outputColumnCount = dataTypes.size();
this.comparator = comparator;
this.left = leftChild;
this.leftColumnCount = leftColumnCount;
this.right = rightChild;
}
@Override
public OperatorContext getOperatorContext() {
return operatorContext;
}
@Override
public ListenableFuture<?> isBlocked() {
ListenableFuture<?> leftBlocked = left.isBlocked();
ListenableFuture<?> rightBlocked = right.isBlocked();
if (leftBlocked.isDone()) {
return rightBlocked;
} else if (rightBlocked.isDone()) {
return leftBlocked;
} else {
return successfulAsList(leftBlocked, rightBlocked);
}
}
@Override
public TsBlock next() throws Exception {
// start stopwatch
long maxRuntime = operatorContext.getMaxRunTime().roundTo(TimeUnit.NANOSECONDS);
long start = System.nanoTime();
if (!prepareInput(start, maxRuntime)) {
return null;
}
// still have time
if (System.nanoTime() - start < maxRuntime) {
long currentEndTime =
rightFinished
? leftTsBlock.getEndTime()
: comparator.getCurrentEndTime(leftTsBlock.getEndTime(), rightTsBlock.getEndTime());
long time = leftTsBlock.getTimeByIndex(leftIndex);
// all the rightTsBlock is less than leftTsBlock, just skip it
if (!rightFinished && comparator.largerThan(time, rightTsBlock.getEndTime())) {
// clean rightTsBlock
rightTsBlock = null;
rightIndex = 0;
} else if (rightFinished
|| comparator.lessThan(
leftTsBlock.getEndTime(), rightTsBlock.getTimeByIndex(rightIndex))) {
// all the rightTsBlock is larger than leftTsBlock, fill null for right child
appendAllLeftTableAndFillNullForRightTable();
} else {
// left and right are overlapped, do the left outer join row by row
int leftRowSize = leftTsBlock.getPositionCount();
TimeColumnBuilder timeColumnBuilder = resultBuilder.getTimeColumnBuilder();
while (comparator.canContinueInclusive(time, currentEndTime)
&& !resultBuilder.isFull()
&& appendRightTableRow(time)) {
timeColumnBuilder.writeLong(time);
resultBuilder.declarePosition();
// deal with leftTsBlock
appendLeftTableRow();
if (leftIndex < leftRowSize) {
// update next row's time
time = leftTsBlock.getTimeByIndex(leftIndex);
} else { // all the leftTsBlock is consumed up
// clean leftTsBlock
leftTsBlock = null;
leftIndex = 0;
break;
}
}
}
}
TsBlock res = resultBuilder.build();
resultBuilder.reset();
return res;
}
private boolean prepareInput(long start, long maxRuntime) throws Exception {
if ((leftTsBlock == null || leftTsBlock.getPositionCount() == leftIndex)
&& left.hasNextWithTimer()) {
leftTsBlock = left.nextWithTimer();
leftIndex = 0;
}
// still have time and right child still have remaining data
if ((System.nanoTime() - start < maxRuntime)
&& (!rightFinished
&& (rightTsBlock == null || rightTsBlock.getPositionCount() == rightIndex))) {
if (right.hasNextWithTimer()) {
rightTsBlock = right.nextWithTimer();
rightIndex = 0;
} else {
rightFinished = true;
}
}
return tsBlockIsNotEmpty(leftTsBlock, leftIndex)
&& (rightFinished || tsBlockIsNotEmpty(rightTsBlock, rightIndex));
}
private boolean tsBlockIsNotEmpty(TsBlock tsBlock, int index) {
return tsBlock != null && index < tsBlock.getPositionCount();
}
private void appendLeftTableRow() {
for (int i = 0; i < leftColumnCount; i++) {
Column leftColumn = leftTsBlock.getColumn(i);
ColumnBuilder columnBuilder = resultBuilder.getColumnBuilder(i);
if (leftColumn.isNull(leftIndex)) {
columnBuilder.appendNull();
} else {
columnBuilder.write(leftColumn, leftIndex);
}
}
leftIndex++;
}
/**
* deal with rightTsBlock
*
* @param time left table's current time
* @return true if we can append this row into result, that means there exists time in
* rightTsBlock larger than or equals to current time false if we cannot decide whether there
* exist corresponding time in right table until rightTsBlock is consumed up
*/
private boolean appendRightTableRow(long time) {
int rowCount = rightTsBlock.getPositionCount();
while (rightIndex < rowCount
&& comparator.lessThan(rightTsBlock.getTimeByIndex(rightIndex), time)) {
rightIndex++;
}
if (rightIndex == rowCount) {
// clean up rightTsBlock
rightTsBlock = null;
rightIndex = 0;
return false;
}
if (rightTsBlock.getTimeByIndex(rightIndex) == time) {
// right table has this time, append right table's corresponding row
for (int i = leftColumnCount; i < outputColumnCount; i++) {
Column rightColumn = rightTsBlock.getColumn(i - leftColumnCount);
ColumnBuilder columnBuilder = resultBuilder.getColumnBuilder(i);
if (rightColumn.isNull(rightIndex)) {
columnBuilder.appendNull();
} else {
columnBuilder.write(rightColumn, rightIndex);
}
}
// update right Index
rightIndex++;
} else {
// right table doesn't have this time, just append null for right table
for (int i = leftColumnCount; i < outputColumnCount; i++) {
resultBuilder.getColumnBuilder(i).appendNull();
}
}
return true;
}
private void appendAllLeftTableAndFillNullForRightTable() {
int rowSize = leftTsBlock.getPositionCount();
// append time column
TimeColumnBuilder timeColumnBuilder = resultBuilder.getTimeColumnBuilder();
TimeColumn leftTimeColumn = leftTsBlock.getTimeColumn();
for (int i = leftIndex; i < rowSize; i++) {
timeColumnBuilder.writeLong(leftTimeColumn.getLong(i));
}
resultBuilder.declarePositions(rowSize - leftIndex);
// append value column of left table
appendValueColumnForLeftTable(rowSize);
// append null for each column of right table
appendNullForRightTable(rowSize);
// clean leftTsBlock
leftTsBlock = null;
leftIndex = 0;
}
private void appendValueColumnForLeftTable(int rowSize) {
for (int i = 0; i < leftColumnCount; i++) {
ColumnBuilder columnBuilder = resultBuilder.getColumnBuilder(i);
Column valueColumn = leftTsBlock.getColumn(i);
if (valueColumn.mayHaveNull()) {
for (int rowIndex = leftIndex; rowIndex < rowSize; rowIndex++) {
if (valueColumn.isNull(rowIndex)) {
columnBuilder.appendNull();
} else {
columnBuilder.write(valueColumn, rowIndex);
}
}
} else {
// no null in current column, no need to do isNull judgement for each row in for-loop
for (int rowIndex = leftIndex; rowIndex < rowSize; rowIndex++) {
columnBuilder.write(valueColumn, rowIndex);
}
}
}
}
private void appendNullForRightTable(int rowSize) {
int nullCount = rowSize - leftIndex;
for (int i = leftColumnCount; i < outputColumnCount; i++) {
ColumnBuilder columnBuilder = resultBuilder.getColumnBuilder(i);
columnBuilder.appendNull(nullCount);
}
}
@Override
public boolean hasNext() throws Exception {
return tsBlockIsNotEmpty(leftTsBlock, leftIndex) || left.hasNextWithTimer();
}
@Override
public void close() throws Exception {
if (left != null) {
left.close();
}
if (right != null) {
right.close();
}
}
@Override
public boolean isFinished() throws Exception {
return !tsBlockIsNotEmpty(leftTsBlock, leftIndex) && left.isFinished();
}
@Override
public long calculateMaxPeekMemory() {
return Math.max(
Math.max(
left.calculateMaxPeekMemoryWithCounter(), right.calculateMaxPeekMemoryWithCounter()),
calculateRetainedSizeAfterCallingNext() + calculateMaxReturnSize());
}
@Override
public long calculateMaxReturnSize() {
return maxReturnSize;
}
@Override
public long calculateRetainedSizeAfterCallingNext() {
// leftTsBlock + leftChild.RetainedSizeAfterCallingNext + rightTsBlock +
// rightChild.RetainedSizeAfterCallingNext
return left.calculateMaxReturnSize()
+ left.calculateRetainedSizeAfterCallingNext()
+ right.calculateMaxReturnSize()
+ right.calculateRetainedSizeAfterCallingNext();
}
}