Class TimestampsAndWatermarksOperator<T>
- Type Parameters:
T- The type of the input elements
- All Implemented Interfaces:
Serializable,org.apache.flink.api.common.operators.ProcessingTimeService.ProcessingTimeCallback,org.apache.flink.api.common.state.CheckpointListener,Input<T>,KeyContext,KeyContextHandler,OneInputStreamOperator<T,,T> StreamOperator<T>,StreamOperatorStateHandler.CheckpointedStreamOperator,YieldingOperator<T>
These two responsibilities run in the same operator rather than in two different ones, because the implementation of the timestamp assigner and the watermark generator is frequently in the same class (and should be run in the same instance), even though the separate interfaces support the use of different classes.
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classImplementation of theWatermarkEmitter, based on the components that are available inside a stream operator. -
Field Summary
Fields inherited from class org.apache.flink.streaming.api.operators.AbstractStreamOperator
combinedWatermark, config, lastRecordAttributes1, lastRecordAttributes2, latencyStats, LOG, metrics, output, processingTimeService, stateHandler, stateKeySelector1, stateKeySelector2, timeServiceManager -
Constructor Summary
ConstructorsConstructorDescriptionTimestampsAndWatermarksOperator(StreamOperatorParameters<T> parameters, org.apache.flink.api.common.eventtime.WatermarkStrategy<T> watermarkStrategy, boolean emitProgressiveWatermarks) -
Method Summary
Modifier and TypeMethodDescriptionvoidclose()This method is called at the very end of the operator's life, both in the case of a successful completion of the operation, and in the case of a failure and canceling.voidfinish()This method is called at the end of data processing.voidonProcessingTime(long timestamp) voidopen()This method is called immediately before any elements are processed, it should contain the operator's initialization logic, e.g. state initialization.voidprocessElement(StreamRecord<T> element) Processes one element that arrived on this input of theMultipleInputStreamOperator.voidprocessWatermark(Watermark mark) Override the base implementation to completely ignore watermarks propagated from upstream, except for the "end of time" watermark.voidprocessWatermarkStatus(WatermarkStatus watermarkStatus) Override the base implementation to completely ignore statuses propagated from upstream.Methods inherited from class org.apache.flink.streaming.api.operators.AbstractStreamOperator
beforeInitializeStateHandler, getContainingTask, getCurrentKey, getExecutionConfig, getInternalTimerService, getKeyedStateBackend, getKeyedStateStore, getMetricGroup, getOperatorConfig, getOperatorID, getOperatorName, getOperatorStateBackend, getOrCreateKeyedState, getPartitionedState, getPartitionedState, getProcessingTimeService, getRuntimeContext, getStateKeySelector1, getStateKeySelector2, getTimeServiceManager, getUserCodeClassloader, hasKeyContext1, hasKeyContext2, initializeState, initializeState, isAsyncStateProcessingEnabled, isUsingCustomRawKeyedState, notifyCheckpointAborted, notifyCheckpointComplete, prepareSnapshotPreBarrier, processLatencyMarker, processLatencyMarker1, processLatencyMarker2, processRecordAttributes, processRecordAttributes1, processRecordAttributes2, processWatermark, processWatermark1, processWatermark1, processWatermark2, processWatermark2, processWatermarkStatus, processWatermarkStatus1, processWatermarkStatus2, reportOrForwardLatencyMarker, setCurrentKey, setKeyContextElement1, setKeyContextElement2, setMailboxExecutor, setProcessingTimeService, setup, snapshotState, snapshotState, useSplittableTimersMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.flink.api.common.state.CheckpointListener
notifyCheckpointAborted, notifyCheckpointCompleteMethods inherited from interface org.apache.flink.streaming.api.operators.Input
processLatencyMarker, processRecordAttributes, processWatermarkMethods inherited from interface org.apache.flink.streaming.api.operators.KeyContext
getCurrentKey, setCurrentKeyMethods inherited from interface org.apache.flink.streaming.api.operators.KeyContextHandler
hasKeyContextMethods inherited from interface org.apache.flink.streaming.api.operators.OneInputStreamOperator
setKeyContextElementMethods inherited from interface org.apache.flink.streaming.api.operators.StreamOperator
getMetricGroup, getOperatorAttributes, getOperatorID, initializeState, prepareSnapshotPreBarrier, setKeyContextElement1, setKeyContextElement2, snapshotState
-
Constructor Details
-
TimestampsAndWatermarksOperator
public TimestampsAndWatermarksOperator(StreamOperatorParameters<T> parameters, org.apache.flink.api.common.eventtime.WatermarkStrategy<T> watermarkStrategy, boolean emitProgressiveWatermarks)
-
-
Method Details
-
open
Description copied from class:AbstractStreamOperatorThis method is called immediately before any elements are processed, it should contain the operator's initialization logic, e.g. state initialization.The default implementation does nothing.
- Specified by:
openin interfaceStreamOperator<T>- Overrides:
openin classAbstractStreamOperator<T>- Throws:
Exception- An exception in this method causes the operator to fail.
-
close
Description copied from interface:StreamOperatorThis method is called at the very end of the operator's life, both in the case of a successful completion of the operation, and in the case of a failure and canceling.This method is expected to make a thorough effort to release all resources that the operator has acquired.
NOTE:It can not emit any records! If you need to emit records at the end of processing, do so in the
StreamOperator.finish()method.- Specified by:
closein interfaceStreamOperator<T>- Overrides:
closein classAbstractStreamOperator<T>- Throws:
Exception
-
processElement
Description copied from interface:InputProcesses one element that arrived on this input of theMultipleInputStreamOperator. This method is guaranteed to not be called concurrently with other methods of the operator.- Specified by:
processElementin interfaceInput<T>- Throws:
Exception
-
onProcessingTime
- Specified by:
onProcessingTimein interfaceorg.apache.flink.api.common.operators.ProcessingTimeService.ProcessingTimeCallback- Throws:
Exception
-
processWatermark
Override the base implementation to completely ignore watermarks propagated from upstream, except for the "end of time" watermark.- Specified by:
processWatermarkin interfaceInput<T>- Overrides:
processWatermarkin classAbstractStreamOperator<T>- Throws:
Exception- See Also:
-
processWatermarkStatus
Override the base implementation to completely ignore statuses propagated from upstream.- Specified by:
processWatermarkStatusin interfaceInput<T>- Overrides:
processWatermarkStatusin classAbstractStreamOperator<T>- Throws:
Exception- See Also:
-
finish
Description copied from interface:StreamOperatorThis method is called at the end of data processing.The 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.- Specified by:
finishin interfaceStreamOperator<T>- Overrides:
finishin classAbstractStreamOperator<T>- Throws:
Exception- An exception in this method causes the operator to fail.
-