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 DataInputStatus.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, watermark 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| 构造器和说明 |
|---|
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.TaskInvokable containingTask,
org.apache.flink.api.common.ExecutionConfig executionConfig) |
| 限定符和类型 | 方法和说明 |
|---|---|
void |
close() |
DataInputStatus |
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.TaskInvokable containingTask, org.apache.flink.api.common.ExecutionConfig executionConfig)
public int getInputIndex()
StreamTaskInputgetInputIndex 在接口中 StreamTaskInput<T>public CompletableFuture<Void> prepareSnapshot(org.apache.flink.runtime.checkpoint.channel.ChannelStateWriter channelStateWriter, long checkpointId) throws org.apache.flink.runtime.checkpoint.CheckpointException
StreamTaskInputprepareSnapshot 在接口中 StreamTaskInput<T>org.apache.flink.runtime.checkpoint.CheckpointExceptionpublic void close()
throws IOException
close 在接口中 Closeableclose 在接口中 AutoCloseableIOExceptionpublic DataInputStatus emitNext(PushingAsyncDataInput.DataOutput<T> output) throws Exception
PushingAsyncDataInputThis method should be non blocking.
emitNext 在接口中 PushingAsyncDataInput<T>Exceptionpublic CompletableFuture<?> getAvailableFuture()
getAvailableFuture 在接口中 org.apache.flink.runtime.io.AvailabilityProviderCopyright © 2014–2022 The Apache Software Foundation. All rights reserved.