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

org.apache.flink.runtime.io.network.partition.ResultSubpartition Maven / Gradle / Ivy

There is a newer version: 1.13.6
Show newest version
/*
 * 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.flink.runtime.io.network.partition;

import org.apache.flink.annotation.VisibleForTesting;
import org.apache.flink.runtime.io.network.buffer.Buffer;
import org.apache.flink.runtime.io.network.buffer.BufferConsumer;

import java.io.IOException;

import static org.apache.flink.util.Preconditions.checkNotNull;

/**
 * A single subpartition of a {@link ResultPartition} instance.
 */
public abstract class ResultSubpartition {

	/** The index of the subpartition at the parent partition. */
	protected final int index;

	/** The parent partition this subpartition belongs to. */
	protected final ResultPartition parent;

	// - Statistics ----------------------------------------------------------

	public ResultSubpartition(int index, ResultPartition parent) {
		this.index = index;
		this.parent = parent;
	}

	/**
	 * Whether the buffer can be compressed or not. Note that event is not compressed because it
	 * is usually small and the size can become even larger after compression.
	 */
	protected boolean canBeCompressed(Buffer buffer) {
		return parent.bufferCompressor != null && buffer.isBuffer() && buffer.readableBytes() > 0;
	}

	/**
	 * Gets the total numbers of buffers (data buffers plus events).
	 */
	protected abstract long getTotalNumberOfBuffers();

	protected abstract long getTotalNumberOfBytes();

	/**
	 * Notifies the parent partition about a consumed {@link ResultSubpartitionView}.
	 */
	protected void onConsumedSubpartition() {
		parent.onConsumedSubpartition(index);
	}

	/**
	 * Adds the given buffer.
	 *
	 * 

The request may be executed synchronously, or asynchronously, depending on the * implementation. * *

IMPORTANT: Before adding new {@link BufferConsumer} previously added must be in finished * state. Because of the performance reasons, this is only enforced during the data reading. * * @param bufferConsumer * the buffer to add (transferring ownership to this writer) * @return true if operation succeeded and bufferConsumer was enqueued for consumption. * @throws IOException * thrown in case of errors while adding the buffer */ public abstract boolean add(BufferConsumer bufferConsumer) throws IOException; public abstract void flush(); public abstract void finish() throws IOException; public abstract void release() throws IOException; public abstract ResultSubpartitionView createReadView(BufferAvailabilityListener availabilityListener) throws IOException; abstract int releaseMemory() throws IOException; public abstract boolean isReleased(); /** * Gets the number of non-event buffers in this subpartition. * *

Beware: This method should only be used in tests in non-concurrent access * scenarios since it does not make any concurrency guarantees. */ @VisibleForTesting abstract int getBuffersInBacklog(); /** * Makes a best effort to get the current size of the queue. * This method must not acquire locks or interfere with the task and network threads in * any way. */ public abstract int unsynchronizedGetNumberOfQueuedBuffers(); // ------------------------------------------------------------------------ /** * A combination of a {@link Buffer} and the backlog length indicating * how many non-event buffers are available in the subpartition. */ public static final class BufferAndBacklog { private final Buffer buffer; private final boolean isMoreAvailable; private final int buffersInBacklog; private final boolean nextBufferIsEvent; public BufferAndBacklog(Buffer buffer, boolean isMoreAvailable, int buffersInBacklog, boolean nextBufferIsEvent) { this.buffer = checkNotNull(buffer); this.buffersInBacklog = buffersInBacklog; this.isMoreAvailable = isMoreAvailable; this.nextBufferIsEvent = nextBufferIsEvent; } public Buffer buffer() { return buffer; } public boolean isMoreAvailable() { return isMoreAvailable; } public int buffersInBacklog() { return buffersInBacklog; } public boolean nextBufferIsEvent() { return nextBufferIsEvent; } public static BufferAndBacklog fromBufferAndLookahead(Buffer current, Buffer lookahead, int backlog) { return new BufferAndBacklog( current, lookahead != null, backlog, lookahead != null && !lookahead.isBuffer()); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy