]> git-server-git.apps.pok.os.sepia.ceph.com Git - rocksdb.git/commitdiff
Version and HISTORY.md update for 9.7.3 patch v9.7.3
authorJay Huh <jewoongh@meta.com>
Thu, 17 Oct 2024 18:04:56 +0000 (11:04 -0700)
committerJay Huh <jewoongh@meta.com>
Thu, 17 Oct 2024 19:29:59 +0000 (12:29 -0700)
HISTORY.md
include/rocksdb/version.h
unreleased_history/behavior_changes/remote_compaction_preserve_options.md [deleted file]

index 95117a9d900bdeb5cbee17039244f0dcd209e727..36d472229a7542e3597892fa03902cc6e0c3c555 100644 (file)
@@ -1,6 +1,10 @@
 # Rocksdb Change Log
 > NOTE: Entries for next release do not go here. Follow instructions in `unreleased_history/README.txt`
 
+## 9.7.3 (10/16/2024)
+### Behavior Changes
+* OPTIONS file to be loaded by remote worker is now preserved so that it does not get purged by the primary host. A similar technique as how we are preserving new SST files from getting purged is used for this. min_options_file_numbers_ is tracked like pending_outputs_ is tracked.
+
 ## 9.7.2 (10/08/2024)
 ### Bug Fixes
 * Fix a bug for surfacing write unix time: `Iterator::GetProperty("rocksdb.iterator.write-time")` for non-L0 files.
index 1dae1381c8fdc9a205d69aed0e336273f0cbafd2..2a19796b87ba8581f908e923407f969ca7b0423a 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 2
+#define ROCKSDB_PATCH 3
 
 // 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/behavior_changes/remote_compaction_preserve_options.md b/unreleased_history/behavior_changes/remote_compaction_preserve_options.md
deleted file mode 100644 (file)
index c5cfff9..0000000
+++ /dev/null
@@ -1 +0,0 @@
-OPTIONS file to be loaded by remote worker is now preserved so that it does not get purged by the primary host. A similar technique as how we are preserving new SST files from getting purged is used for this. min_options_file_numbers_ is tracked like pending_outputs_ is tracked.