IN - type of results to be written into the sink.public class CollectSinkOperator<IN> extends StreamSink<IN> implements org.apache.flink.runtime.operators.coordination.OperatorEventHandler
StreamSink that collects query results and sends them back to the client.userFunctionchainingStrategy, config, latencyStats, LOG, metrics, output, processingTimeService| 构造器和说明 |
|---|
CollectSinkOperator(org.apache.flink.api.common.typeutils.TypeSerializer<IN> serializer,
long maxBytesPerBatch,
String accumulatorName) |
| 限定符和类型 | 方法和说明 |
|---|---|
void |
finish()
This method is called at the end of data processing.
|
CompletableFuture<org.apache.flink.runtime.jobgraph.OperatorID> |
getOperatorIdFuture() |
void |
handleOperatorEvent(org.apache.flink.runtime.operators.coordination.OperatorEvent evt) |
open, processElement, processWatermark, reportOrForwardLatencyMarkerclose, getUserFunction, getUserFunctionParameters, initializeState, notifyCheckpointAborted, notifyCheckpointComplete, setOutputType, setup, snapshotStategetChainingStrategy, getContainingTask, getCurrentKey, getExecutionConfig, getInternalTimerService, getKeyedStateBackend, getKeyedStateStore, getMetricGroup, getOperatorConfig, getOperatorID, getOperatorName, getOperatorStateBackend, getOrCreateKeyedState, getPartitionedState, getPartitionedState, getProcessingTimeService, getRuntimeContext, getTimeServiceManager, getUserCodeClassloader, initializeState, isUsingCustomRawKeyedState, prepareSnapshotPreBarrier, processLatencyMarker, processLatencyMarker1, processLatencyMarker2, processWatermark1, processWatermark2, processWatermarkStatus, processWatermarkStatus1, processWatermarkStatus2, setChainingStrategy, setCurrentKey, setKeyContextElement1, setKeyContextElement2, setProcessingTimeService, snapshotStateclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitsetKeyContextElementclose, getMetricGroup, getOperatorID, initializeState, prepareSnapshotPreBarrier, setKeyContextElement1, setKeyContextElement2, snapshotStatenotifyCheckpointAborted, notifyCheckpointCompletegetCurrentKey, setCurrentKeyprocessLatencyMarker, processWatermarkStatuspublic void handleOperatorEvent(org.apache.flink.runtime.operators.coordination.OperatorEvent evt)
handleOperatorEvent 在接口中 org.apache.flink.runtime.operators.coordination.OperatorEventHandlerpublic void finish()
throws Exception
StreamOperatorThe method is expected to flush all remaining buffered data. Exceptions during this flushing of buffered data should be propagated, in order to cause the operation to be recognized as failed, because the last data items are not processed properly.
After this method is called, no more records can be produced for the downstream operators.
WARNING: It is not safe to use this method to commit any transactions or other side
effects! You can use this method to flush any buffered data that can later on be committed
e.g. in a CheckpointListener.notifyCheckpointComplete(long).
NOTE:This method does not need to close any resources. You should release external
resources in the StreamOperator.close() method.
finish 在接口中 StreamOperator<Object>finish 在类中 AbstractUdfStreamOperator<Object,SinkFunction<IN>>Exception - An exception in this method causes the operator to fail.public CompletableFuture<org.apache.flink.runtime.jobgraph.OperatorID> getOperatorIdFuture()
Copyright © 2014–2022 The Apache Software Foundation. All rights reserved.