]> git-server-git.apps.pok.os.sepia.ceph.com Git - rocksdb.git/commitdiff
Mention PR 8206 in HISTORY.md (#8210)
authorLevi Tamasi <ltamasi@fb.com>
Tue, 20 Apr 2021 19:01:58 +0000 (12:01 -0700)
committerLevi Tamasi <ltamasi@fb.com>
Tue, 20 Apr 2021 19:11:28 +0000 (12:11 -0700)
Summary: Pull Request resolved: https://github.com/facebook/rocksdb/pull/8210

Reviewed By: akankshamahajan15

Differential Revision: D27887612

Pulled By: ltamasi

fbshipit-source-id: 0db8d0b6047334dc47fe30a98804449043454386

HISTORY.md

index 2588220ef982f46ca685374a0770ceadf8bfb820..aa326b532f435ae392f106d8f493bb2b12745097 100644 (file)
@@ -14,6 +14,7 @@
 * Fixed a backward iteration bug with partitioned filter enabled: not including the prefix of the last key of the previous filter partition in current filter partition can cause wrong iteration result.
 * Fixed a bug that allowed `DBOptions::max_open_files` to be set with a non-negative integer with `ColumnFamilyOptions::compaction_style = kCompactionStyleFIFO`.
 * Fixed a bug in handling file rename error in distributed/network file systems when the server succeeds but client returns error. The bug can cause CURRENT file to point to non-existing MANIFEST file, thus DB cannot be opened.
+* Fixed a data race between insertion into memtables and the retrieval of the DB properties `rocksdb.cur-size-active-mem-table`, `rocksdb.cur-size-all-mem-tables`, and `rocksdb.size-all-mem-tables`.
 
 ### Performance Improvements
 * On ARM platform, use `yield` instead of `wfe` to relax cpu to gain better performance.