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
CREATETABLEt(
v int,
k intprimary key,
proc_time timestamptzas proctime()
)
WHERE proc_time > now() -1'day'AND v >10
with (
connnector ='kafka'
) FORMAT PLAIN ENCODE JSON;
original requirement: some user want to do state cleaning on the cdc-table and we can do temporal filter on it.
The text was updated successfully, but these errors were encountered:
I personally feel this is low-priority, because I see no popular RDBMS having TTL support. Users typically use range-partitioning to archive old data rather than deleting them, while RisingWave is already based on archive stores. There's no need for data archival.
Possible use cases for this feature can be TTL on non-CDC table, including append-only tables. TTL for append-only tables is tracked in #14791.
original requirement: some user want to do state cleaning on the cdc-table and we can do temporal filter on it.
The text was updated successfully, but these errors were encountered: