Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Licensed 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 io.trino.operator;
import com.google.common.annotations.VisibleForTesting;
import com.google.common.collect.ImmutableList;
import com.google.common.primitives.Ints;
import io.trino.memory.context.LocalMemoryContext;
import io.trino.spi.Page;
import io.trino.spi.type.Type;
import io.trino.sql.gen.JoinCompiler;
import io.trino.sql.planner.plan.PlanNodeId;
import java.util.List;
import java.util.Optional;
import static com.google.common.base.Preconditions.checkArgument;
import static com.google.common.base.Preconditions.checkState;
import static com.google.common.base.Verify.verify;
import static com.google.common.base.Verify.verifyNotNull;
import static com.google.common.collect.ImmutableList.toImmutableList;
import static io.trino.operator.GroupByHash.createGroupByHash;
import static java.lang.Math.min;
import static java.lang.Math.toIntExact;
import static java.util.Objects.requireNonNull;
public class DistinctLimitOperator
implements Operator
{
public static class DistinctLimitOperatorFactory
implements OperatorFactory
{
private final int operatorId;
private final PlanNodeId planNodeId;
private final List distinctChannels;
private final List sourceTypes;
private final long limit;
private final Optional hashChannel;
private boolean closed;
private final JoinCompiler joinCompiler;
public DistinctLimitOperatorFactory(
int operatorId,
PlanNodeId planNodeId,
List extends Type> sourceTypes,
List distinctChannels,
long limit,
Optional hashChannel,
JoinCompiler joinCompiler)
{
this.operatorId = operatorId;
this.planNodeId = requireNonNull(planNodeId, "planNodeId is null");
this.sourceTypes = ImmutableList.copyOf(requireNonNull(sourceTypes, "sourceTypes is null"));
this.distinctChannels = requireNonNull(distinctChannels, "distinctChannels is null");
checkArgument(limit >= 0, "limit must be at least zero");
this.limit = limit;
this.hashChannel = requireNonNull(hashChannel, "hashChannel is null");
this.joinCompiler = requireNonNull(joinCompiler, "joinCompiler is null");
}
@Override
public Operator createOperator(DriverContext driverContext)
{
checkState(!closed, "Factory is already closed");
OperatorContext operatorContext = driverContext.addOperatorContext(operatorId, planNodeId, DistinctLimitOperator.class.getSimpleName());
List distinctTypes = distinctChannels.stream()
.map(sourceTypes::get)
.collect(toImmutableList());
return new DistinctLimitOperator(operatorContext, distinctChannels, distinctTypes, limit, hashChannel, joinCompiler);
}
@Override
public void noMoreOperators()
{
closed = true;
}
@Override
public OperatorFactory duplicate()
{
return new DistinctLimitOperatorFactory(operatorId, planNodeId, sourceTypes, distinctChannels, limit, hashChannel, joinCompiler);
}
}
private final OperatorContext operatorContext;
private final LocalMemoryContext localUserMemoryContext;
private Page inputPage;
private long remainingLimit;
private boolean finishing;
private final int[] inputChannels;
private final GroupByHash groupByHash;
private long nextDistinctId;
// for yield when memory is not available
private int[] groupByIds;
private Work unfinishedWork;
public DistinctLimitOperator(
OperatorContext operatorContext,
List distinctChannels,
List distinctTypes,
long limit,
Optional hashChannel,
JoinCompiler joinCompiler)
{
this.operatorContext = requireNonNull(operatorContext, "operatorContext is null");
this.localUserMemoryContext = operatorContext.localUserMemoryContext();
checkArgument(limit >= 0, "limit must be at least zero");
checkArgument(distinctTypes.size() == distinctChannels.size(), "distinctTypes and distinctChannels sizes don't match");
if (hashChannel.isPresent()) {
this.inputChannels = new int[distinctChannels.size() + 1];
for (int i = 0; i < distinctChannels.size(); i++) {
this.inputChannels[i] = distinctChannels.get(i);
}
this.inputChannels[distinctChannels.size()] = hashChannel.get();
}
else {
this.inputChannels = Ints.toArray(distinctChannels);
}
this.groupByHash = createGroupByHash(
operatorContext.getSession(),
distinctTypes,
hashChannel.isPresent(),
toIntExact(min(limit, 10_000)),
joinCompiler,
this::updateMemoryReservation);
remainingLimit = limit;
}
@Override
public OperatorContext getOperatorContext()
{
return operatorContext;
}
@Override
public void finish()
{
finishing = true;
}
@Override
public boolean isFinished()
{
return !hasUnfinishedInput() && (finishing || remainingLimit == 0);
}
@Override
public boolean needsInput()
{
return !finishing && remainingLimit > 0 && !hasUnfinishedInput();
}
@Override
public void addInput(Page page)
{
checkState(needsInput());
inputPage = page.getColumns(inputChannels);
unfinishedWork = groupByHash.getGroupIds(inputPage);
processUnfinishedWork();
updateMemoryReservation();
}
@Override
public Page getOutput()
{
if (unfinishedWork != null && !processUnfinishedWork()) {
return null;
}
if (groupByIds == null) {
return null;
}
verifyNotNull(inputPage);
long resultingPositions = min(groupByHash.getGroupCount() - nextDistinctId, remainingLimit);
Page result = null;
if (resultingPositions > 0) {
int[] distinctPositions = new int[toIntExact(resultingPositions)];
int distinctCount = 0;
for (int position = 0; position < groupByIds.length && distinctCount < distinctPositions.length; position++) {
if (groupByIds[position] == nextDistinctId) {
distinctPositions[distinctCount++] = position;
nextDistinctId++;
}
}
verify(distinctCount == distinctPositions.length);
remainingLimit -= distinctCount;
result = inputPage.getPositions(distinctPositions, 0, distinctPositions.length);
}
groupByIds = null;
inputPage = null;
updateMemoryReservation();
return result;
}
private boolean processUnfinishedWork()
{
verifyNotNull(unfinishedWork);
if (!unfinishedWork.process()) {
return false;
}
groupByIds = unfinishedWork.getResult();
verify(groupByIds.length == inputPage.getPositionCount(), "Expected on groupId for each input position");
unfinishedWork = null;
return true;
}
private boolean hasUnfinishedInput()
{
return inputPage != null || unfinishedWork != null;
}
/**
* Update memory usage.
*
* @return true if the reservation is within the limit
*/
// TODO: update in the interface now that the new memory tracking framework is landed
// Essentially we would love to have clean interfaces to support both pushing and pulling memory usage
// The following implementation is a hybrid model, where the push model is going to call the pull model causing reentrancy
private boolean updateMemoryReservation()
{
// Operator/driver will be blocked on memory after we call localUserMemoryContext.setBytes().
// If memory is not available, once we return, this operator will be blocked until memory is available.
localUserMemoryContext.setBytes(groupByHash.getEstimatedSize());
// If memory is not available, inform the caller that we cannot proceed for allocation.
return operatorContext.isWaitingForMemory().isDone();
}
@VisibleForTesting
public int getCapacity()
{
return groupByHash.getCapacity();
}
}