]> git-server-git.apps.pok.os.sepia.ceph.com Git - rocksdb.git/commitdiff
Update HISTORY and version for 9.7.1
authoranand76 <anand1976@users.noreply.github.com>
Fri, 27 Sep 2024 06:54:52 +0000 (23:54 -0700)
committeranand76 <anand1976@users.noreply.github.com>
Fri, 27 Sep 2024 06:54:52 +0000 (23:54 -0700)
HISTORY.md
include/rocksdb/version.h
unreleased_history/bug_fixes/build_db_options.md [deleted file]
unreleased_history/bug_fixes/compressed_secondary_cache_account.md [deleted file]
unreleased_history/bug_fixes/skip_insertion_tiered_sec_cache.md [deleted file]

index d4fc843a2bc592fad9a7e59f1435cc1ed93d984d..0b589fe8a0f072581933231af2bbbf69b770694e 100644 (file)
@@ -1,6 +1,12 @@
 # Rocksdb Change Log
 > NOTE: Entries for next release do not go here. Follow instructions in `unreleased_history/README.txt`
 
+## 9.7.1 (09/26/2024)
+### Bug Fixes
+* Several DB option settings could be lost through `GetOptionsFromString()`, possibly elsewhere as well. Affected options, now fixed:`background_close_inactive_wals`, `write_dbid_to_manifest`, `write_identity_file`, `prefix_seek_opt_in_only`
+* Fix under counting of allocated memory in the compressed secondary cache due to looking at the compressed block size rather than the actual memory allocated, which could be larger due to internal fragmentation.
+* Skip insertion of compressed blocks in the secondary cache if the lowest_used_cache_tier DB option is kVolatileTier.
+
 ## 9.7.0 (09/20/2024)
 ### New Features
 * Make Cache a customizable class that can be instantiated by the object registry.
index fbbd9765ce2ca17705d9b8bd1e654ceb05f66e11..1a14a9ef8d8cc413afc390fa4b62ebdbf76421b1 100644 (file)
@@ -13,7 +13,7 @@
 // minor or major version number planned for release.
 #define ROCKSDB_MAJOR 9
 #define ROCKSDB_MINOR 7
-#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
diff --git a/unreleased_history/bug_fixes/build_db_options.md b/unreleased_history/bug_fixes/build_db_options.md
deleted file mode 100644 (file)
index 6994ea7..0000000
+++ /dev/null
@@ -1 +0,0 @@
-* Several DB option settings could be lost through `GetOptionsFromString()`, possibly elsewhere as well. Affected options, now fixed:`background_close_inactive_wals`, `write_dbid_to_manifest`, `write_identity_file`, `prefix_seek_opt_in_only`
diff --git a/unreleased_history/bug_fixes/compressed_secondary_cache_account.md b/unreleased_history/bug_fixes/compressed_secondary_cache_account.md
deleted file mode 100644 (file)
index 07c73b8..0000000
+++ /dev/null
@@ -1 +0,0 @@
-Fix under counting of allocated memory in the compressed secondary cache due to looking at the compressed block size rather than the actual memory allocated, which could be larger due to internal fragmentation.
diff --git a/unreleased_history/bug_fixes/skip_insertion_tiered_sec_cache.md b/unreleased_history/bug_fixes/skip_insertion_tiered_sec_cache.md
deleted file mode 100644 (file)
index 7dcbe09..0000000
+++ /dev/null
@@ -1 +0,0 @@
-Skip insertion of compressed blocks in the secondary cache if the lowest_used_cache_tier DB option is kVolatileTier.