mirror of https://github.com/facebook/rocksdb.git
Update for 8.5.fb branch cut (#11642)
Summary: Updated the main branch for the 8.5.fb branch cut. Also made unreleased_history/release.sh backdate to the last commit instead of the current date in case the release manager is a laggard like myself. Pull Request resolved: https://github.com/facebook/rocksdb/pull/11642 Reviewed By: cbi42 Differential Revision: D47783574 Pulled By: ajkr fbshipit-source-id: 4e2a80f5ccd542dc7dd0d22dfd7e59cb136325a1
This commit is contained in:
parent
f4e4039f00
commit
cf95821fb6
15
HISTORY.md
15
HISTORY.md
|
@ -1,6 +1,21 @@
|
||||||
# Rocksdb Change Log
|
# Rocksdb Change Log
|
||||||
> NOTE: Entries for next release do not go here. Follow instructions in `unreleased_history/README.txt`
|
> NOTE: Entries for next release do not go here. Follow instructions in `unreleased_history/README.txt`
|
||||||
|
|
||||||
|
## 8.5.0 (07/21/2023)
|
||||||
|
### Public API Changes
|
||||||
|
* Removed recently added APIs `GeneralCache` and `MakeSharedGeneralCache()` as our plan changed to stop exposing a general-purpose cache interface. The old forms of these APIs, `Cache` and `NewLRUCache()`, are still available, although general-purpose caching support will be dropped eventually.
|
||||||
|
|
||||||
|
### Behavior Changes
|
||||||
|
* Option `periodic_compaction_seconds` no longer supports FIFO compaction: setting it has no effect on FIFO compactions. FIFO compaction users should only set option `ttl` instead.
|
||||||
|
* Move prefetching responsibility to page cache for compaction read for non directIO use case
|
||||||
|
|
||||||
|
### Performance Improvements
|
||||||
|
* In case of direct_io, if buffer passed by callee is already aligned, RandomAccessFileRead::Read will avoid realloacting a new buffer, reducing memcpy and use already passed aligned buffer.
|
||||||
|
* Small efficiency improvement to HyperClockCache by reducing chance of compiler-generated heap allocations
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
* Fix use_after_free bug in async_io MultiReads when underlying FS enabled kFSBuffer. kFSBuffer is when underlying FS pass their own buffer instead of using RocksDB scratch in FSReadRequest. Right now it's an experimental feature.
|
||||||
|
|
||||||
## 8.4.0 (06/26/2023)
|
## 8.4.0 (06/26/2023)
|
||||||
### New Features
|
### New Features
|
||||||
* Add FSReadRequest::fs_scratch which is a data buffer allocated and provided by underlying FileSystem to RocksDB during reads, when FS wants to provide its own buffer with data instead of using RocksDB provided FSReadRequest::scratch. This can help in cpu optimization by avoiding copy from file system's buffer to RocksDB buffer. More details on how to use/enable it in file_system.h. Right now its supported only for MultiReads(async + sync) with non direct io.
|
* Add FSReadRequest::fs_scratch which is a data buffer allocated and provided by underlying FileSystem to RocksDB during reads, when FS wants to provide its own buffer with data instead of using RocksDB provided FSReadRequest::scratch. This can help in cpu optimization by avoiding copy from file system's buffer to RocksDB buffer. More details on how to use/enable it in file_system.h. Right now its supported only for MultiReads(async + sync) with non direct io.
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
// NOTE: in 'main' development branch, this should be the *next*
|
// NOTE: in 'main' development branch, this should be the *next*
|
||||||
// minor or major version number planned for release.
|
// minor or major version number planned for release.
|
||||||
#define ROCKSDB_MAJOR 8
|
#define ROCKSDB_MAJOR 8
|
||||||
#define ROCKSDB_MINOR 5
|
#define ROCKSDB_MINOR 6
|
||||||
#define ROCKSDB_PATCH 0
|
#define ROCKSDB_PATCH 0
|
||||||
|
|
||||||
// Do not use these. We made the mistake of declaring macros starting with
|
// Do not use these. We made the mistake of declaring macros starting with
|
||||||
|
|
|
@ -125,7 +125,7 @@ EOF
|
||||||
|
|
||||||
# To check for DB forward compatibility with loading options (old version
|
# To check for DB forward compatibility with loading options (old version
|
||||||
# reading data from new), as well as backward compatibility
|
# reading data from new), as well as backward compatibility
|
||||||
declare -a db_forward_with_options_refs=("6.27.fb" "6.28.fb" "6.29.fb" "7.0.fb" "7.1.fb" "7.2.fb" "7.3.fb" "7.4.fb" "7.5.fb" "7.6.fb" "7.7.fb" "7.8.fb" "7.9.fb" "7.10.fb" "8.0.fb" "8.1.fb" "8.2.fb" "8.3.fb" "8.4.fb")
|
declare -a db_forward_with_options_refs=("6.27.fb" "6.28.fb" "6.29.fb" "7.0.fb" "7.1.fb" "7.2.fb" "7.3.fb" "7.4.fb" "7.5.fb" "7.6.fb" "7.7.fb" "7.8.fb" "7.9.fb" "7.10.fb" "8.0.fb" "8.1.fb" "8.2.fb" "8.3.fb" "8.4.fb" "8.5.fb")
|
||||||
# To check for DB forward compatibility without loading options (in addition
|
# To check for DB forward compatibility without loading options (in addition
|
||||||
# to the "with loading options" set), as well as backward compatibility
|
# to the "with loading options" set), as well as backward compatibility
|
||||||
declare -a db_forward_no_options_refs=() # N/A at the moment
|
declare -a db_forward_no_options_refs=() # N/A at the moment
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
Option `periodic_compaction_seconds` no longer supports FIFO compaction: setting it has no effect on FIFO compactions. FIFO compaction users should only set option `ttl` instead.
|
|
|
@ -1 +0,0 @@
|
||||||
Move prefetching responsibility to page cache for compaction read for non directIO use case
|
|
|
@ -1 +0,0 @@
|
||||||
Fix use_after_free bug in async_io MultiReads when underlying FS enabled kFSBuffer. kFSBuffer is when underlying FS pass their own buffer instead of using RocksDB scratch in FSReadRequest. Right now it's an experimental feature.
|
|
|
@ -1 +0,0 @@
|
||||||
In case of direct_io, if buffer passed by callee is already aligned, RandomAccessFileRead::Read will avoid realloacting a new buffer, reducing memcpy and use already passed aligned buffer.
|
|
|
@ -1 +0,0 @@
|
||||||
Small efficiency improvement to HyperClockCache by reducing chance of compiler-generated heap allocations
|
|
|
@ -1 +0,0 @@
|
||||||
Removed recently added APIs `GeneralCache` and `MakeSharedGeneralCache()` as our plan changed to stop exposing a general-purpose cache interface. The old forms of these APIs, `Cache` and `NewLRUCache()`, are still available, although general-purpose caching support will be dropped eventually.
|
|
|
@ -31,7 +31,7 @@ awk '/#define ROCKSDB_MAJOR/ { major = $3 }
|
||||||
/#define ROCKSDB_MINOR/ { minor = $3 }
|
/#define ROCKSDB_MINOR/ { minor = $3 }
|
||||||
/#define ROCKSDB_PATCH/ { patch = $3 }
|
/#define ROCKSDB_PATCH/ { patch = $3 }
|
||||||
END { printf "## " major "." minor "." patch }' < include/rocksdb/version.h >> HISTORY.new
|
END { printf "## " major "." minor "." patch }' < include/rocksdb/version.h >> HISTORY.new
|
||||||
echo " (`date +%x`)" >> HISTORY.new
|
echo " (`git log -n1 --date=format:"%m/%d/%Y" --format="%ad"`)" >> HISTORY.new
|
||||||
|
|
||||||
function process_file () {
|
function process_file () {
|
||||||
# use awk to correct
|
# use awk to correct
|
||||||
|
|
Loading…
Reference in New Issue