All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.trino.exchange.SpoolingExchangeDataSource Maven / Gradle / Ivy

There is a newer version: 465
Show newest version
/*
 * 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.exchange;

import com.google.common.util.concurrent.ListenableFuture;
import io.airlift.log.Logger;
import io.airlift.slice.Slice;
import io.trino.memory.context.LocalMemoryContext;
import io.trino.operator.OperatorInfo;
import io.trino.spi.exchange.ExchangeSource;

import static com.google.common.util.concurrent.Futures.immediateVoidFuture;
import static io.airlift.concurrent.MoreFutures.toListenableFuture;
import static java.util.Objects.requireNonNull;

public class SpoolingExchangeDataSource
        implements ExchangeDataSource
{
    private static final Logger log = Logger.get(SpoolingExchangeDataSource.class);

    // This field is not final to allow releasing the memory retained by the ExchangeSource instance.
    // It is modified (assigned to null) when the ExchangeOperator is closed.
    // It doesn't have to be declared as volatile as the nullification of this variable doesn't have to be immediately visible to other threads.
    // However since close can be called at any moment this variable has to be accessed in a safe way (avoiding "check-then-use").
    private ExchangeSource exchangeSource;
    private final LocalMemoryContext systemMemoryContext;
    private volatile boolean closed;

    public SpoolingExchangeDataSource(ExchangeSource exchangeSource, LocalMemoryContext systemMemoryContext)
    {
        // this assignment is expected to be followed by an assignment of a final field to ensure safe publication
        this.exchangeSource = requireNonNull(exchangeSource, "exchangeSource is null");
        this.systemMemoryContext = requireNonNull(systemMemoryContext, "systemMemoryContext is null");
    }

    @Override
    public Slice pollPage()
    {
        ExchangeSource exchangeSource = this.exchangeSource;
        if (exchangeSource == null) {
            return null;
        }

        Slice data = exchangeSource.read();
        systemMemoryContext.setBytes(exchangeSource.getMemoryUsage());

        // If the data source has been closed in a meantime reset memory usage back to 0
        if (closed) {
            systemMemoryContext.setBytes(0);
        }

        return data;
    }

    @Override
    public boolean isFinished()
    {
        ExchangeSource exchangeSource = this.exchangeSource;
        if (exchangeSource == null) {
            return true;
        }
        return exchangeSource.isFinished();
    }

    @Override
    public ListenableFuture isBlocked()
    {
        ExchangeSource exchangeSource = this.exchangeSource;
        if (exchangeSource == null) {
            return immediateVoidFuture();
        }
        return toListenableFuture(exchangeSource.isBlocked());
    }

    @Override
    public void addInput(ExchangeInput input)
    {
        SpoolingExchangeInput spoolingExchangeInput = (SpoolingExchangeInput) input;
        ExchangeSource exchangeSource = this.exchangeSource;
        if (exchangeSource == null) {
            return;
        }
        spoolingExchangeInput.getOutputSelector().ifPresent(exchangeSource::setOutputSelector);
        exchangeSource.addSourceHandles(spoolingExchangeInput.getExchangeSourceHandles());
    }

    @Override
    public void noMoreInputs()
    {
        ExchangeSource exchangeSource = this.exchangeSource;
        if (exchangeSource == null) {
            return;
        }
        exchangeSource.noMoreSourceHandles();
    }

    @Override
    public OperatorInfo getInfo()
    {
        return null;
    }

    @Override
    public synchronized void close()
    {
        if (closed) {
            return;
        }
        closed = true;
        try {
            exchangeSource.close();
        }
        catch (RuntimeException e) {
            log.warn(e, "error closing exchange source");
        }
        finally {
            exchangeSource = null;
            systemMemoryContext.setBytes(0);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy