From cb7a5e02edeb883193eb5b4901d5943f58e9add9 Mon Sep 17 00:00:00 2001 From: Hui Xiao Date: Tue, 26 Sep 2023 15:51:19 -0700 Subject: [PATCH] Update HISTORY and version.h for 8.6.7 --- HISTORY.md | 7 +++++++ include/rocksdb/version.h | 2 +- unreleased_history/bug_fixes/fallback_only_unsupported.md | 1 - 3 files changed, 8 insertions(+), 2 deletions(-) delete mode 100644 unreleased_history/bug_fixes/fallback_only_unsupported.md diff --git a/HISTORY.md b/HISTORY.md index abdf8ff1b..ba24927d8 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,6 +1,13 @@ # Rocksdb Change Log > NOTE: Entries for next release do not go here. Follow instructions in `unreleased_history/README.txt` +## 8.6.7 (09/26/2023) +### Bug Fixes +* Fixed a bug where compaction read under non direct IO still falls back to RocksDB internal prefetching after file system's prefetching returns non-OK status other than `Status::NotSupported()` + +### Behavior Changes +* For non direct IO, eliminate the file system prefetching attempt for compaction read when `Options::compaction_readahead_size` is 0 + ## 8.6.6 (09/25/2023) ### Bug Fixes * Fix a bug with atomic_flush=true that can cause DB to stuck after a flush fails (#11872). diff --git a/include/rocksdb/version.h b/include/rocksdb/version.h index fd1447cf8..b02cb6d7b 100644 --- a/include/rocksdb/version.h +++ b/include/rocksdb/version.h @@ -13,7 +13,7 @@ // minor or major version number planned for release. #define ROCKSDB_MAJOR 8 #define ROCKSDB_MINOR 6 -#define ROCKSDB_PATCH 6 +#define ROCKSDB_PATCH 7 // 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/fallback_only_unsupported.md b/unreleased_history/bug_fixes/fallback_only_unsupported.md deleted file mode 100644 index feb02ce3b..000000000 --- a/unreleased_history/bug_fixes/fallback_only_unsupported.md +++ /dev/null @@ -1 +0,0 @@ -Fixed a bug where compaction read under non direct IO still falls back to RocksDB internal prefetching after file system's prefetching returns non-OK status other than `Status::NotSupported()`