Skip to content

Releases: facebook/rocksdb

v5.5.6

12 Aug 23:20
Compare
Choose a tag to compare

5.5.6 (08/12/2017)

Bug Fixes

  • Fix incorrect dropping of deletions during intra-L0 compaction.

v5.4.10

12 Aug 23:23
Compare
Choose a tag to compare

5.4.10 (08/12/2017)

Bug Fixes

  • Fix incorrect dropping of deletions during intra-L0 compaction.

RocksDB 5.7.1

12 Aug 02:11
Compare
Choose a tag to compare

5.7.1 (08/12/2017)

Bug Fixes

  • Fix incorrect dropping of deletions during intra-L0 compaction.

RocksDB 5.6.2

12 Aug 23:17
Compare
Choose a tag to compare

5.6.2 (08/12/2017)

Bug Fixes

  • Fix incorrect dropping of deletions during intra-L0 compaction.

RocksDB 5.5.6

12 Aug 23:20
Compare
Choose a tag to compare

5.5.6 (08/12/2017)

Bug Fixes

  • Fix incorrect dropping of deletions during intra-L0 compaction.

RocksDB 5.4.10

12 Aug 23:22
Compare
Choose a tag to compare

5.4.10 (08/12/2017)

Bug Fixes

  • Fix incorrect dropping of deletions during intra-L0 compaction.

v5.6.1

25 Jul 17:14
Compare
Choose a tag to compare

5.6.1 release.

RocksDB 5.6.1

25 Jul 17:15
Compare
Choose a tag to compare

5.6.1 (07/25/2017)

Bug Fixes

  • Fix lite build.

5.6.0 (06/06/2017)

Public API Change

  • Scheduling flushes and compactions in the same thread pool is no longer supported by setting max_background_flushes=0. Instead, users can achieve this by configuring their high-pri thread pool to have zero threads.
  • Replace Options::max_background_flushes, Options::max_background_compactions, and Options::base_background_compactions all with Options::max_background_jobs, which automatically decides how many threads to allocate towards flush/compaction.
  • options.delayed_write_rate by default take the value of options.rate_limiter rate.
  • Replace global variable IOStatsContext iostats_context with IOStatsContext* get_iostats_context(); replace global variable PerfContext perf_context with PerfContext* get_perf_context().

New Features

  • Change ticker/histogram statistics implementations to use core-local storage. This improves aggregation speed compared to our previous thread-local approach, particularly for applications with many threads.
  • Users can pass a cache object to write buffer manager, so that they can cap memory usage for memtable and block cache using one single limit.
  • Flush will be triggered when 7/8 of the limit introduced by write_buffer_manager or db_write_buffer_size is triggered, so that the hard threshold is hard to hit.
  • Introduce WriteOptions.low_pri. If it is true, low priority writes will be throttled if the compaction is behind.
  • DB::IngestExternalFile() now supports ingesting files into a database containing range deletions.

Bug Fixes

  • Shouldn't ignore return value of fsync() in flush.

RocksDB 5.5.5

18 Jul 20:53
Compare
Choose a tag to compare
  • Change license section of java/rocksjni.pom
  • Clear up some files still mentioning PATENTS file

RocksDB 5.5.4

18 Jul 18:49
Compare
Choose a tag to compare

5.5.4 (07/18/2017)

  • Change License to Apache + GPLv2