Rocksdb can be opened with Time to Live(TTL) support

USE-CASES

This API should be used to open the db when key-values inserted are meant to be removed from the db in a non-strict 'ttl' amount of time therefore, this guarantees that key-values inserted will remain in the db for at least ttl amount of time and the db will make efforts to remove the key-values as soon as possible after ttl seconds of their insertion.

BEHAVIOUR

  • TTL is accepted in seconds
  • (int32_t)Timestamp(creation) is suffixed to values in Put internally
  • Expired TTL values are deleted in compaction only:(Timestamp+ttl=5
  • read_only=true opens in the usual read-only mode. Compactions will not be triggered(neither manual nor automatic), so no expired entries removed

CONSTRAINTS

Not specifying/passing or non-positive TTL behaves like TTL = infinity

!!!WARNING!!!

  • Calling DB::Open directly to re-open a db created by this API will get corrupt values(timestamp suffixed) and no ttl effect will be there during the second Open, so use this API consistently to open the db
  • Be careful when passing ttl with a small positive value because the whole database may be deleted in a small amount of time

API

Defined in header <rocksdb/utilities/db_ttl.h>

  1. static Status DBWithTTL::Open(const Options& options, const std::string& name, StackableDB** dbptr,
  2. int32_t ttl = 0, bool read_only = false);