Skip to content

RocksDB 4.3.1

Compare
Choose a tag to compare
@kradhakrishnan kradhakrishnan released this 15 Mar 20:41
· 8661 commits to main since this release

New Features

  • CompactionFilter has new member function called IgnoreSnapshots which allows CompactionFilter to be called even if there are snapshots later than the key.
  • RocksDB will now persist options under the same directory as the RocksDB database on successful DB::Open, CreateColumnFamily, DropColumnFamily, and SetOptions.
  • Introduce LoadLatestOptions() in rocksdb/utilities/options_util.h. This function can construct the latest DBOptions / ColumnFamilyOptions used by the specified RocksDB intance.
  • Introduce CheckOptionsCompatibility() in rocksdb/utilities/options_util.h. This function checks whether the input set of options is able to open the specified DB successfully.

Public API Changes

  • When options.db_write_buffer_size triggers, only the column family with the largest column family size will be flushed, not all the column families.