Class StreamPipelineOptions
- java.lang.Object
-
- org.apache.flink.streaming.api.environment.StreamPipelineOptions
-
@PublicEvolving public class StreamPipelineOptions extends Object
Theconfiguration optionsfor job execution. Those are stream specific options. See alsoPipelineOptions.
-
-
Field Summary
Fields Modifier and Type Field Description static org.apache.flink.configuration.ConfigOption<TimeCharacteristic>TIME_CHARACTERISTICDeprecated.In Flink 1.12 the default stream time characteristic has been changed toTimeCharacteristic.EventTime, thus you don't need to set this option for enabling event-time support anymore.
-
Constructor Summary
Constructors Constructor Description StreamPipelineOptions()
-
-
-
Field Detail
-
TIME_CHARACTERISTIC
@Deprecated public static final org.apache.flink.configuration.ConfigOption<TimeCharacteristic> TIME_CHARACTERISTIC
Deprecated.In Flink 1.12 the default stream time characteristic has been changed toTimeCharacteristic.EventTime, thus you don't need to set this option for enabling event-time support anymore. Explicitly using processing-time windows and timers works in event-time mode. If you need to disable watermarks, please setPipelineOptions.AUTO_WATERMARK_INTERVALto 0. If you are usingTimeCharacteristic.IngestionTime, please manually set an appropriateWatermarkStrategy. If you are using generic "time window" operations (for exampleKeyedStream.timeWindow(org.apache.flink.streaming.api.windowing.time.Time)that change behaviour based on the time characteristic, please use equivalent operations that explicitly specify processing time or event time.
-
-