Summary: The new blog post links will be formatted differently coming over to gh-pages. But we can redirect from the old style over to the new style for existing blog posts. Test Plan: Visual https://www.facebook.com/pxlcld/pvWQ Reviewers: lgalanis, sdong Reviewed By: sdong Subscribers: andrewkr, dhruba, leveldb Differential Revision: https://reviews.facebook.net/D63513
1.3 KiB
title | layout | author | category | redirect_from | |
---|---|---|---|---|---|
RocksDB 4.2 Release! | post | sdong | blog |
|
New RocksDB release - 4.2!
New Features
-
Introduce CreateLoggerFromOptions(), this function create a Logger for provided DBOptions.
-
Add GetAggregatedIntProperty(), which returns the sum of the GetIntProperty of all the column families.
-
Add MemoryUtil in rocksdb/utilities/memory.h. It currently offers a way to get the memory usage by type from a list rocksdb instances.
Public API changes
-
CompactionFilter::Context includes information of Column Family ID
-
The need-compaction hint given by TablePropertiesCollector::NeedCompact() will be persistent and recoverable after DB recovery. This introduces a breaking format change. If you use this experimental feature, including NewCompactOnDeletionCollectorFactory() in the new version, you may not be able to directly downgrade the DB back to version 4.0 or lower.
-
TablePropertiesCollectorFactory::CreateTablePropertiesCollector() now takes an option Context, containing the information of column family ID for the file being written.
-
Remove DefaultCompactionFilterFactory.