You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-- Target paimon table with tags create automatically from watermark createtableorders_with_watermark(
id INTPRIMARY KEY NOT ENFORCED,
val int,
create_time TIMESTAMP(3),
update_time TIMESTAMP(3),
WATERMARK FOR `update_time`AS`update_time`- INTERVAL '5' SECOND
)
WITH (
'tag.automatic-creation'='watermark',
'tag.creation-period'='hourly',
'tag.creation-delay'='10 m',
'tag.num-retained-max'='90',
'sink.watermark-time-zone'='Asia/Shanghai'
);
-- mock datasource
CREATE TEMPORARY TABLE datagen_table (
id INT,
name STRING,
ts TIMESTAMP(3)
) WITH (
'connector'='datagen',
'rows-per-second'='1',
'fields.id.min'='1',
'fields.id.max'='100',
'fields.name.length'='10',
'fields.ts.kind'='random'
);
-- Run a stream job on FlinkINSERT INTO orders_with_watermark
select id, 1, now(), now()
from datagen_table;
What doesn't meet your expectations?
The tags should be created automatically every hour, but none.
No tag files could be found under the table folder and also no result when executing the following sql
select*from`orders_with_watermark$tags`
Anything else?
No response
Are you willing to submit a PR?
I'm willing to submit a PR!
The text was updated successfully, but these errors were encountered:
Search before asking
Paimon version
0.9
Compute Engine
Flink-1.18.1
Standalone cluster.
Minimal reproduce step
What doesn't meet your expectations?
The tags should be created automatically every hour, but none.
No tag files could be found under the table folder and also no result when executing the following sql
Anything else?
No response
Are you willing to submit a PR?
The text was updated successfully, but these errors were encountered: