It seems that the command alter table TTL affects only rows that are written after that time; it has no impact on existing rows
How to apply TTL on older/ existing data? how can we purge? any suggestions
It seems that the command alter table TTL affects only rows that are written after that time; it has no impact on existing rows
How to apply TTL on older/ existing data? how can we purge? any suggestions
You are right. Alter table TTL affects only rows that are written after that time; it has no impact on existing rows
You can use the delete command to purge. See below a detailed example In this case, I would like to set the TTL to 1 hour
you can also update the TTL for each row. But Multi-row update is not supported
and you have also the API to do this