]> git-server-git.apps.pok.os.sepia.ceph.com Git - rocksdb.git/commitdiff
batch latest fixes into 7.8.2
authorAndrew Kryczka <andrewkr@fb.com>
Mon, 28 Nov 2022 07:12:09 +0000 (23:12 -0800)
committerAndrew Kryczka <andrewkr@fb.com>
Mon, 28 Nov 2022 07:12:09 +0000 (23:12 -0800)
HISTORY.md

index 3b4a0aba2dfbc94578d53da3110d20e148ccef79..1203f9407afb6772c252010eb2ef4ae6816de5a1 100644 (file)
@@ -1,12 +1,9 @@
 # Rocksdb Change Log
-## Unreleased
-### Bug Fixes
-* Fix failed memtable flush retry bug that could cause wrongly ordered updates, which would surface to writers as `Status::Corruption` in case of `force_consistency_checks=true` (default). It affects use cases that enable both parallel flush (`max_background_flushes > 1` or `max_background_jobs >= 8`) and non-default memtable count (`max_write_buffer_number > 2`).
-* Tiered Storage: fixed excessive keys written to penultimate level in non-debug builds.
-
-## 7.8.2 (11/23/2022)
+## 7.8.2 (11/27/2022)
 ### Behavior changes
 * Make best-efforts recovery verify SST unique ID before Version construction (#10962)
+* Fix failed memtable flush retry bug that could cause wrongly ordered updates, which would surface to writers as `Status::Corruption` in case of `force_consistency_checks=true` (default). It affects use cases that enable both parallel flush (`max_background_flushes > 1` or `max_background_jobs >= 8`) and non-default memtable count (`max_write_buffer_number > 2`).
+* Tiered Storage: fixed excessive keys written to penultimate level in non-debug builds.
 
 ### Bug Fixes
 * Fixed a regression in scan for async_io. During seek, valid buffers were getting cleared causing a regression.