STREAMING_REAL_TIME_MODE error class
Streaming real-time mode has the following limitation:
ARBITRARY_STATEFUL_OPERATIONS_NOT_SUPPORTED
The arbitrary stateful streaming operator, <op>
, is not currently supported. Please see the Real-Time Mode User Guide for a list of supported operators.
DROP_DUPLICATES_WITHIN_WATERMARK_NOT_SUPPORTED
dropDuplicatesWithinWatermark is not supported. To work around this limitation, you can use dropDuplicates instead. Remember to pass your event-time column to dropDuplicates so that state can be evicted.
EVENT_TIME_BASED_TIMERS_IN_TRANSFORM_WITH_STATE_NOT_SUPPORTED
Event time based timers in transformWithState operator are not supported yet. If you would like to use the transformWithState operator, please specify processing time in your transformWithState operator and retry your query.
INVALID_TRIGGER_OVERRIDE_INTERVAL
The real-time trigger’s checkpoint interval of <interval>
could not be parsed. Please verify you have passed a positive integer.
OUTPUT_MODE_NOT_SUPPORTED
The output mode <outputMode>
is not supported. To work around this limitation, set the output mode to Update. In the future, <outputMode>
may be supported.