T - The type of the value in incoming StreamRecords.K - The type of the key.public final class SortingDataInput<T,K> extends Object implements StreamTaskInput<T>
StreamTaskInput which sorts in the incoming records from a chained input. It postpones
emitting the records until it receives InputStatus.END_OF_INPUT from the chained input.
After it is done it emits a single record at a time from the sorter.
The sorter uses binary comparison of keys, which are extracted and serialized when received
from the chained input. Moreover the timestamps of incoming records are used for secondary
ordering. For the comparison it uses either FixedLengthByteKeyComparator if the length of
the serialized key is constant, or VariableLengthByteKeyComparator otherwise.
Watermarks, stream statuses, nor latency markers are propagated downstream as they do not make sense with buffered records. The input emits the largest watermark seen after all records.
PushingAsyncDataInput.DataOutput<T>UNSPECIFIED| Constructor and Description |
|---|
SortingDataInput(StreamTaskInput<T> wrappedInput,
org.apache.flink.api.common.typeutils.TypeSerializer<T> typeSerializer,
org.apache.flink.api.common.typeutils.TypeSerializer<K> keySerializer,
org.apache.flink.api.java.functions.KeySelector<T,K> keySelector,
org.apache.flink.runtime.memory.MemoryManager memoryManager,
org.apache.flink.runtime.io.disk.iomanager.IOManager ioManager,
boolean objectReuse,
double managedMemoryFraction,
org.apache.flink.configuration.Configuration jobConfiguration,
org.apache.flink.runtime.jobgraph.tasks.AbstractInvokable containingTask) |
| Modifier and Type | Method and Description |
|---|---|
void |
close() |
org.apache.flink.core.io.InputStatus |
emitNext(PushingAsyncDataInput.DataOutput<T> output)
Pushes the next element to the output from current data input, and returns the input status
to indicate whether there are more available data in current input.
|
CompletableFuture<?> |
getAvailableFuture() |
int |
getInputIndex()
Returns the input index of this input.
|
CompletableFuture<Void> |
prepareSnapshot(org.apache.flink.runtime.checkpoint.channel.ChannelStateWriter channelStateWriter,
long checkpointId)
Prepares to spill the in-flight input buffers as checkpoint snapshot.
|
public SortingDataInput(StreamTaskInput<T> wrappedInput, org.apache.flink.api.common.typeutils.TypeSerializer<T> typeSerializer, org.apache.flink.api.common.typeutils.TypeSerializer<K> keySerializer, org.apache.flink.api.java.functions.KeySelector<T,K> keySelector, org.apache.flink.runtime.memory.MemoryManager memoryManager, org.apache.flink.runtime.io.disk.iomanager.IOManager ioManager, boolean objectReuse, double managedMemoryFraction, org.apache.flink.configuration.Configuration jobConfiguration, org.apache.flink.runtime.jobgraph.tasks.AbstractInvokable containingTask)
public int getInputIndex()
StreamTaskInputgetInputIndex in interface StreamTaskInput<T>public CompletableFuture<Void> prepareSnapshot(org.apache.flink.runtime.checkpoint.channel.ChannelStateWriter channelStateWriter, long checkpointId) throws org.apache.flink.runtime.checkpoint.CheckpointException
StreamTaskInputprepareSnapshot in interface StreamTaskInput<T>org.apache.flink.runtime.checkpoint.CheckpointExceptionpublic void close()
throws IOException
close in interface Closeableclose in interface AutoCloseableIOExceptionpublic org.apache.flink.core.io.InputStatus emitNext(PushingAsyncDataInput.DataOutput<T> output) throws Exception
PushingAsyncDataInputThis method should be non blocking.
emitNext in interface PushingAsyncDataInput<T>Exceptionpublic CompletableFuture<?> getAvailableFuture()
getAvailableFuture in interface org.apache.flink.runtime.io.AvailabilityProviderCopyright © 2014–2022 The Apache Software Foundation. All rights reserved.