CREATE TABLE user_actions (
user_name STRING,
data STRING,
user_action_time TIMESTAMP(3),
-- declare user_action_time as event time attribute and use 5 seconds delayed watermark strategy
WATERMARK FOR user_action_time AS user_action_time - INTERVAL '5' SECOND
) WITH (
...
);
Initial idea could be to provide watermark config in source like:
Watermarks are defined in DDL as part of column list https://nightlies.apache.org/flink/flink-docs-master/docs/dev/table/concepts/time_attributes/
Initial idea could be to provide watermark config in source like:
Currently we have no mechanism to provide something similar.