![JAR search and dependency download from the Maven repository](/logo.png)
io.trino.spiller.GenericSpiller Maven / Gradle / Ivy
/*
* 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.spiller;
import com.google.common.io.Closer;
import com.google.common.util.concurrent.ListenableFuture;
import io.trino.annotation.NotThreadSafe;
import io.trino.memory.context.AggregatedMemoryContext;
import io.trino.operator.SpillContext;
import io.trino.spi.Page;
import io.trino.spi.type.Type;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import static com.google.common.base.Preconditions.checkState;
import static com.google.common.util.concurrent.Futures.immediateVoidFuture;
import static java.util.Objects.requireNonNull;
import static java.util.stream.Collectors.toList;
@NotThreadSafe
public class GenericSpiller
implements Spiller
{
private final List types;
private final SpillContext spillContext;
private final AggregatedMemoryContext aggregatedMemoryContext;
private final SingleStreamSpillerFactory singleStreamSpillerFactory;
private final Closer closer = Closer.create();
private ListenableFuture previousSpill = immediateVoidFuture();
private final List singleStreamSpillers = new ArrayList<>();
public GenericSpiller(
List types,
SpillContext spillContext,
AggregatedMemoryContext aggregatedMemoryContext,
SingleStreamSpillerFactory singleStreamSpillerFactory)
{
this.types = requireNonNull(types, "types cannot be null");
this.spillContext = requireNonNull(spillContext, "spillContext cannot be null");
this.aggregatedMemoryContext = requireNonNull(aggregatedMemoryContext, "aggregatedMemoryContext cannot be null");
this.singleStreamSpillerFactory = requireNonNull(singleStreamSpillerFactory, "singleStreamSpillerFactory cannot be null");
}
@Override
public ListenableFuture spill(Iterator pageIterator)
{
checkNoSpillInProgress();
SingleStreamSpiller singleStreamSpiller = singleStreamSpillerFactory.create(types, spillContext, aggregatedMemoryContext.newLocalMemoryContext(GenericSpiller.class.getSimpleName()));
closer.register(singleStreamSpiller);
singleStreamSpillers.add(singleStreamSpiller);
previousSpill = singleStreamSpiller.spill(pageIterator);
return previousSpill;
}
@Override
public List> getSpills()
{
checkNoSpillInProgress();
return singleStreamSpillers.stream()
.map(SingleStreamSpiller::getSpilledPages)
.collect(toList());
}
@Override
public void close()
{
try {
closer.close();
}
catch (IOException e) {
throw new RuntimeException("could not close some single stream spillers", e);
}
}
private void checkNoSpillInProgress()
{
checkState(previousSpill.isDone(), "previous spill still in progress");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy