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

com.facebook.presto.spark.execution.PrestoSparkOutputBuffer Maven / Gradle / Ivy

There is a newer version: 0.289
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 com.facebook.presto.spark.execution;

import com.facebook.presto.execution.buffer.OutputBufferMemoryManager;
import com.google.common.util.concurrent.ListenableFuture;

import javax.annotation.concurrent.GuardedBy;

import java.util.ArrayDeque;
import java.util.Queue;
import java.util.concurrent.atomic.AtomicLong;

import static java.util.Objects.requireNonNull;

public class PrestoSparkOutputBuffer
{
    private final OutputBufferMemoryManager memoryManager;

    private final Object monitor = new Object();
    @GuardedBy("monitor")
    private final Queue buffer = new ArrayDeque<>();
    @GuardedBy("monitor")
    private boolean finished;

    private final AtomicLong totalRowsProcessed = new AtomicLong();
    private final AtomicLong totalPagesProcessed = new AtomicLong();

    public PrestoSparkOutputBuffer(OutputBufferMemoryManager memoryManager)
    {
        this.memoryManager = requireNonNull(memoryManager, "memoryManager is null");
    }

    public ListenableFuture isFull()
    {
        return memoryManager.getBufferBlockedFuture();
    }

    public void enqueue(T rows)
    {
        requireNonNull(rows, "rows is null");
        synchronized (monitor) {
            buffer.add(rows);
            memoryManager.updateMemoryUsage(rows.getRetainedSizeInBytes());
            monitor.notify();
        }
    }

    public void setNoMoreRows()
    {
        memoryManager.setNoBlockOnFull();
        synchronized (monitor) {
            finished = true;
            monitor.notifyAll();
        }
    }

    public T get()
            throws InterruptedException
    {
        T rowBatch = null;
        synchronized (monitor) {
            while (buffer.isEmpty() && !finished) {
                monitor.wait();
            }
            if (!buffer.isEmpty()) {
                rowBatch = buffer.poll();
            }
            if (rowBatch != null) {
                // It is intended that we reduce the memory accounting eagerly when the rowBatch is polled.
                // But at most one single row batch will be under counted with about ~1MB so it's a good enough approximation.
                memoryManager.updateMemoryUsage(-rowBatch.getRetainedSizeInBytes());
            }
        }
        if (rowBatch != null) {
            totalPagesProcessed.incrementAndGet();
            totalRowsProcessed.addAndGet(rowBatch.getPositionCount());
        }
        return rowBatch;
    }

    public long getTotalRowsProcessed()
    {
        return totalRowsProcessed.get();
    }

    public long getTotalPagesProcessed()
    {
        return totalPagesProcessed.get();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy