rocksdb/docs/_posts/2016-02-24-rocksdb-4-2-release.markdown
Joel Marcey 3c2262400f Migrate the RocksDB Worpdress blog over to Jekyll
Summary:
Tried to:

- preserve existing links
- move existing images over (there were 2)
- preserve codeblocks (modified where apprporiate)
- etc.

Also as agreed upon:

- All blog posts are preserved.
- Comments are not preserved.
- Not turning on comments for future blog posts (use the FB developer group instead).
- Like button at the end of the blog post.

Depends on https://reviews.facebook.net/D63051

Test Plan: Visual

Reviewers: IslamAbdelRahman, lgalanis

Reviewed By: lgalanis

Subscribers: andrewkr, dhruba, leveldb

Differential Revision: https://reviews.facebook.net/D63105
2016-09-01 17:28:49 -07:00

1.3 KiB

title layout author category
RocksDB 4.2 Release! post sdong blog

New RocksDB release - 4.2!

New Features

  1. Introduce CreateLoggerFromOptions(), this function create a Logger for provided DBOptions.

  2. Add GetAggregatedIntProperty(), which returns the sum of the GetIntProperty of all the column families.

  3. 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

  1. CompactionFilter::Context includes information of Column Family ID

  2. 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.

  3. TablePropertiesCollectorFactory::CreateTablePropertiesCollector() now takes an option Context, containing the information of column family ID for the file being written.

  4. Remove DefaultCompactionFilterFactory.

https://github.com/facebook/rocksdb/releases/tag/v4.2