From 51b25da6f81a1d7a14a0b1c3c0ee2cec6c5484ea Mon Sep 17 00:00:00 2001 From: Zhichao Cao Date: Thu, 9 Apr 2020 14:54:33 -0700 Subject: [PATCH] Updated to RocksDB 6.9.1 --- HISTORY.md | 7 +------ include/rocksdb/version.h | 2 +- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index d7fcc9016..6e2f0173d 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,12 +1,7 @@ # Rocksdb Change Log -## Unreleased +## 6.9.1 (04/09/2020) ### Bug Fixes * Fix wrong result being read from ingested file. May happen when a key in the file happen to be prefix of another key also in the file. The issue can further cause more data corruption. The issue exists with rocksdb >= 5.0.0 since DB::IngestExternalFile() was introduced. - -### New Features -* Added support for pipelined & parallel compression optimization for `BlockBasedTableBuilder`. This optimization makes block building, block compression and block appending a pipeline, and uses multiple threads to accelerate block compression. Users can set `CompressionOptions::parallel_threads` greater than 1 to enable compression parallelism. - -### Bug Fixes * Fix a bug when making options.bottommost_compression, options.compression_opts and options.bottommost_compression_opts dynamically changeable: the modified values are not written to option files or returned back to users when being queried. ## 6.9.0 (03/29/2020) diff --git a/include/rocksdb/version.h b/include/rocksdb/version.h index 75cd33fac..543b06b92 100644 --- a/include/rocksdb/version.h +++ b/include/rocksdb/version.h @@ -6,7 +6,7 @@ #define ROCKSDB_MAJOR 6 #define ROCKSDB_MINOR 9 -#define ROCKSDB_PATCH 0 +#define ROCKSDB_PATCH 1 // Do not use these. We made the mistake of declaring macros starting with // double underscore. Now we have to live with our choice. We'll deprecate these