This is an automated email from the ASF dual-hosted git repository.
twice pushed a commit to branch unstable
in repository https://gitbox.apache.org/repos/asf/kvrocks.git
The following commit(s) were added to refs/heads/unstable by this push:
new d85232b00 chore(deps): Bump RocksDB to v10.9.1 (#3329)
d85232b00 is described below
commit d85232b00bbe3a167da217c8cb4f181ee48aef86
Author: Aleks Lozovyuk <[email protected]>
AuthorDate: Wed Jan 7 15:08:36 2026 +0300
chore(deps): Bump RocksDB to v10.9.1 (#3329)
Bump RocksDB to v10.9.1, a first public release of 10.9 line (see:
https://github.com/facebook/rocksdb/releases/tag/v10.9.1)
**Key changes**
- Added optimization that allowed for the asynchronous prefetching of
all data outlined in a multiscan iterator
- Updated standalone range deletion L0 file compaction behavior to avoid
compacting with any newer L0 files (which is expensive and not useful)
- To reduce risk of ODR violations or similar,
ROCKSDB_USING_THREAD_STATUS has been removed from public headers and
replaced with static const bool ThreadStatus::kEnabled
- 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
- Added a new API to support option migration for multiple column
families
- Fix resumable compaction incorrectly allowing resumption from a
truncated range deletion that is not well handled currently
- Fixed a bug for WAL_ttl_seconds > 0 use cases where the newest
archived WAL files could be incorrectly deleted when the system clock
moved backwards
- Other bug fix
Co-authored-by: Twice <[email protected]>
---
cmake/rocksdb.cmake | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/cmake/rocksdb.cmake b/cmake/rocksdb.cmake
index 986c6041c..1791b607c 100644
--- a/cmake/rocksdb.cmake
+++ b/cmake/rocksdb.cmake
@@ -26,8 +26,8 @@ endif()
include(cmake/utils.cmake)
FetchContent_DeclareGitHubWithMirror(rocksdb
- facebook/rocksdb v10.8.3
- MD5=9ceb50a7a22a0db2b42646db2210f4b0
+ facebook/rocksdb v10.9.1
+ MD5=06a521bf5749f73d0da29844f9ae6fca
)
FetchContent_GetProperties(jemalloc)