mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-19 16:15:07 +00:00
9 lines
704 B
ReStructuredText
9 lines
704 B
ReStructuredText
|
|
.. caution::
|
|
* We strongly recommend using a single TTL value for any given table.
|
|
* This means sticking to the default time to live as specified in the table's schema.
|
|
* Using multiple TTL values for a given table may lead to inefficiency when purging expired data, because an SSTable will remain until **all** of its data is expired.
|
|
* Tombstone compaction can be enabled to remove data from partially expired SSTables, but this creates additional WA (write amplification).
|
|
|
|
.. caution::
|
|
Avoid overwriting data and deleting data explicitly at all costs, as this can potentially block an expired SSTable from being purged, due to the checks that are performed to avoid data resurrection. |