]> git-server-git.apps.pok.os.sepia.ceph.com Git - rocksdb.git/commitdiff
Update HISTORY and version for 10.8.2
authorJay Huh <jewoongh@meta.com>
Tue, 11 Nov 2025 05:04:41 +0000 (21:04 -0800)
committerJay Huh <jewoongh@meta.com>
Tue, 11 Nov 2025 05:04:41 +0000 (21:04 -0800)
HISTORY.md
include/rocksdb/version.h
unreleased_history/new_features/Trivial_move_support_in_CompactFiles_API.md [deleted file]
unreleased_history/new_features/auto_tune_manifest.md [deleted file]

index 0c5959e6cb5b508ec3f40f78a7701a8e56d5e027..b905a1df3901cffcf7a5c04e57c52bc620a3a77c 100644 (file)
@@ -1,6 +1,11 @@
 # Rocksdb Change Log
 > NOTE: Entries for next release do not go here. Follow instructions in `unreleased_history/README.txt`
 
+## 10.8.2 (11/07/2025)
+### New Features
+* Added an auto-tuning feature for DB manifest file size that also (by default) improves the safety of existing configurations in case `max_manifest_file_size` is repeatedly exceeded. The new recommendation is to set `max_manifest_file_size` to something small like 1MB and tune `max_manifest_space_amp_pct` as needed to balance write amp and space amp in the manifest. Refer to comments on those options in `DBOptions` for details. Both options are (now) mutable.
+* Add a new option allow_trivial_move in CompactionOptions to allow CompactFiles to perform trivial move if possible. By default the flag of allow_trivial_move is false, so it preserve the original behavior.
+
 ## 10.8.1 (10/29/2025)
 ### Behavior Changes
 * PosixWritableFile now repositions the seek pointer to the new end of file after a call to Truncate.
index 5f6b13c847519c9e0671feb6ac26f8ec325b7f8b..aa65c9200b6e04cecaaa30745c339911adf08e8a 100644 (file)
@@ -13,7 +13,7 @@
 // minor or major version number planned for release.
 #define ROCKSDB_MAJOR 10
 #define ROCKSDB_MINOR 8
-#define ROCKSDB_PATCH 1
+#define ROCKSDB_PATCH 2
 
 // Make it easy to do conditional compilation based on version checks, i.e.
 // #if ROCKSDB_VERSION_GE(4, 5, 6)
diff --git a/unreleased_history/new_features/Trivial_move_support_in_CompactFiles_API.md b/unreleased_history/new_features/Trivial_move_support_in_CompactFiles_API.md
deleted file mode 100644 (file)
index 4c52fc3..0000000
+++ /dev/null
@@ -1 +0,0 @@
-Add a new option allow_trivial_move in CompactionOptions to allow CompactFiles to perform trivial move if possible. By default the flag of allow_trivial_move is false, so it preserve the original behavior.
diff --git a/unreleased_history/new_features/auto_tune_manifest.md b/unreleased_history/new_features/auto_tune_manifest.md
deleted file mode 100644 (file)
index 9bc95a0..0000000
+++ /dev/null
@@ -1 +0,0 @@
-* Added an auto-tuning feature for DB manifest file size that also (by default) improves the safety of existing configurations in case `max_manifest_file_size` is repeatedly exceeded. The new recommendation is to set `max_manifest_file_size` to something small like 1MB and tune `max_manifest_space_amp_pct` as needed to balance write amp and space amp in the manifest. Refer to comments on those options in `DBOptions` for details. Both options are (now) mutable.