public class RemoteInputChannel extends InputChannel
InputChannel.BufferAndAvailabilitychannelInfo, consumedSubpartitionIndex, initialBackoff, inputGate, maxBackoff, numBuffersIn, numBytesIn, partitionId| Constructor and Description |
|---|
RemoteInputChannel(SingleInputGate inputGate,
int channelIndex,
ResultPartitionID partitionId,
int consumedSubpartitionIndex,
ConnectionID connectionId,
ConnectionManager connectionManager,
int initialBackOff,
int maxBackoff,
int networkBuffersPerChannel,
org.apache.flink.metrics.Counter numBytesIn,
org.apache.flink.metrics.Counter numBuffersIn,
ChannelStateWriter stateWriter) |
| Modifier and Type | Method and Description |
|---|---|
void |
acknowledgeAllRecordsProcessed()
When received
EndOfData from one channel, it need to acknowledge after this event get
processed. |
void |
checkpointStarted(CheckpointBarrier barrier)
Spills all queued buffers on checkpoint start.
|
void |
checkpointStopped(long checkpointId)
Called by task thread on cancel/complete to clean-up temporary data.
|
void |
convertToPriorityEvent(int sequenceNumber) |
int |
getAndResetUnannouncedCredit()
Gets the unannounced credit and resets it to 0 atomically.
|
BufferProvider |
getBufferProvider() |
int |
getInitialCredit() |
InputChannelID |
getInputChannelId() |
Optional<InputChannel.BufferAndAvailability> |
getNextBuffer()
Returns the next buffer from the consumed subpartition or
Optional.empty() if there
is no data to return. |
Buffer |
getNextReceivedBuffer() |
int |
getNumberOfAvailableBuffers() |
int |
getNumberOfQueuedBuffers()
Gets the current number of received buffers which have not been processed yet.
|
int |
getNumberOfRequiredBuffers() |
int |
getSenderBacklog() |
int |
getUnannouncedCredit()
Gets the currently unannounced credit.
|
boolean |
isReleased() |
void |
notifyBufferAvailable(int numAvailableBuffers)
The unannounced credit is increased by the given amount and might notify increased credit to
the producer.
|
void |
notifyRequiredSegmentId(int segmentId)
Notify the upstream the id of required segment that should be sent to netty connection.
|
void |
onBuffer(Buffer buffer,
int sequenceNumber,
int backlog)
Handles the input buffer.
|
void |
onEmptyBuffer(int sequenceNumber,
int backlog) |
void |
onError(Throwable cause) |
void |
onFailedPartitionRequest() |
void |
onSenderBacklog(int backlog)
Receives the backlog from the producer's buffer response.
|
Buffer |
requestBuffer()
Requests buffer from input channel directly for receiving network data.
|
void |
requestSubpartition()
Requests a remote subpartition.
|
void |
resumeConsumption()
After sending a
CheckpointBarrier of
exactly-once mode, the upstream will be blocked and become unavailable. |
String |
toString() |
int |
unsynchronizedGetExclusiveBuffersUsed() |
int |
unsynchronizedGetFloatingBuffersAvailable() |
int |
unsynchronizedGetNumberOfQueuedBuffers() |
long |
unsynchronizedGetSizeOfQueuedBuffers() |
checkError, getChannelIndex, getChannelInfo, getConsumedSubpartitionIndex, getCurrentBackoff, getPartitionId, increaseBackoff, notifyChannelNonEmpty, notifyPriorityEvent, setErrorpublic RemoteInputChannel(SingleInputGate inputGate, int channelIndex, ResultPartitionID partitionId, int consumedSubpartitionIndex, ConnectionID connectionId, ConnectionManager connectionManager, int initialBackOff, int maxBackoff, int networkBuffersPerChannel, org.apache.flink.metrics.Counter numBytesIn, org.apache.flink.metrics.Counter numBuffersIn, ChannelStateWriter stateWriter)
@VisibleForTesting
public void requestSubpartition()
throws IOException,
InterruptedException
IOExceptionInterruptedExceptionpublic Optional<InputChannel.BufferAndAvailability> getNextBuffer() throws IOException
InputChannelOptional.empty() if there
is no data to return.getNextBuffer in class InputChannelIOExceptionpublic boolean isReleased()
@VisibleForTesting public int getNumberOfAvailableBuffers()
@VisibleForTesting public int getNumberOfRequiredBuffers()
@VisibleForTesting public int getSenderBacklog()
@VisibleForTesting public Buffer getNextReceivedBuffer()
public void notifyBufferAvailable(int numAvailableBuffers)
throws IOException
notifyBufferAvailable in class InputChannelIOExceptionpublic void resumeConsumption()
throws IOException
InputChannelCheckpointBarrier of
exactly-once mode, the upstream will be blocked and become unavailable. This method tries to
unblock the corresponding upstream and resume data consumption.resumeConsumption in class InputChannelIOExceptionpublic void acknowledgeAllRecordsProcessed()
throws IOException
InputChannelEndOfData from one channel, it need to acknowledge after this event get
processed.acknowledgeAllRecordsProcessed in class InputChannelIOExceptionpublic int getUnannouncedCredit()
public int getAndResetUnannouncedCredit()
public int getNumberOfQueuedBuffers()
public int unsynchronizedGetNumberOfQueuedBuffers()
unsynchronizedGetNumberOfQueuedBuffers in class InputChannelpublic long unsynchronizedGetSizeOfQueuedBuffers()
unsynchronizedGetSizeOfQueuedBuffers in class InputChannelpublic int unsynchronizedGetExclusiveBuffersUsed()
public int unsynchronizedGetFloatingBuffersAvailable()
public InputChannelID getInputChannelId()
public int getInitialCredit()
public BufferProvider getBufferProvider() throws IOException
IOException@Nullable public Buffer requestBuffer()
public void onSenderBacklog(int backlog)
throws IOException
backlog - The number of unsent buffers in the producer's sub partition.IOExceptionpublic void onBuffer(Buffer buffer, int sequenceNumber, int backlog) throws IOException
IOExceptionpublic void checkpointStarted(CheckpointBarrier barrier) throws CheckpointException
checkpointStarted in class InputChannelCheckpointExceptionpublic void checkpointStopped(long checkpointId)
InputChannelcheckpointStopped in class InputChannelpublic void convertToPriorityEvent(int sequenceNumber)
throws IOException
convertToPriorityEvent in class InputChannelIOExceptionpublic void onEmptyBuffer(int sequenceNumber,
int backlog)
throws IOException
IOExceptionpublic void onFailedPartitionRequest()
public void onError(Throwable cause)
public void notifyRequiredSegmentId(int segmentId)
throws IOException
InputChannelnotifyRequiredSegmentId in class InputChannelsegmentId - segment id indicates the id of segment.IOExceptionCopyright © 2014–2023 The Apache Software Foundation. All rights reserved.