Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

TTL vs default_time_to_live which one is better and why?

Requirement is simple: we have to create a table which will have only 24 hours of data. We have two options

  1. Defile TTL with each insert
  2. Make table property default_time_to_live for 24 hours.

I have general idea about both the things but internally which one will be helpful to deal with tombstones? or both will generate same amount of tombstones? Which one will be better and why any reference link will be appreciated.

like image 655
theone Avatar asked Apr 27 '18 05:04

theone


1 Answers

If a table has default_time_to_live on it then rows that exceed this time limit are deleted immediately without tombstones being written. This will not affect rows / columns that have an explicit TTL set on them. These will be tombstoned.

If you go down the TTL route then you should consider setting the gc_grace_seconds property on the table to something less than the default (10 days). Particularly if you are looking at a 24 hour TTL.

References:

How data is deleted <-- Good background

CREATE TABLE properties <-- Table property reference

About Deletes and Tombstones in Cassandra <-- Everything you ever wanted to know about deletes and tombstones

like image 76
mikea Avatar answered Sep 18 '22 14:09

mikea