Skip to content

Commit 462388a

Browse files
committed
Update HISTORY.md
1 parent 9967c32 commit 462388a

8 files changed

Lines changed: 16 additions & 7 deletions

HISTORY.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
# Rocksdb Change Log
22
> NOTE: Entries for next release do not go here. Follow instructions in `unreleased_history/README.txt`
33
4+
## 10.5.0 (07/18/2025)
5+
### Public API Changes
6+
* DB option skip_checking_sst_file_sizes_on_db_open is deprecated, in favor of validating file size in parallel in a thread pool, when db is opened. When DB is opened, with paranoid check enabled, a file with the wrong size would fail the DB open. With paranoid check disabled, the DB open would succeed, the column family with the corrupted file would not be read or write, while the other healthy column families could be read and write normally. When max_open_files option is not set to -1, only a subset of the files will be opened and checked. The rest of the files will be opened and checked when they are accessed.
7+
8+
### Behavior Changes
9+
* PessimisticTransaction::GetWaitingTxns now returns waiting transaction information even if the current transaction has timed out. This allows the information to be surfaced to users for debugging purposes once it is known that the timeout has occured.
10+
* A new API GetFileSize is added to FSRandomAccessFile interface class. It uses fstat vs stat on the posix implementation which is more efficient. Caller could use it to get file size faster. This function might be required in the future for FileSystem implementation outside of the RocksDB code base.
11+
* RocksDB now triggers eligible compactions every 12 hours when periodic compaction is configured. This solves a limitation of the compaction trigger mechanism, which would only trigger compaction after specific events like flush, compaction, or SetOptions.
12+
13+
### Bug Fixes
14+
* Fix a bug in BackupEngine that can crash backup due to a null FSWritableFile passed to WritableFileWriter.
15+
* Fix DB::NewMultiScan iterator to respect the scan upper bound specified in ScanOptions
16+
17+
### Performance Improvements
18+
* Optimized MultiScan using BlockBasedTable to coalesce I/Os and prefetch all data blocks.
19+
420
## 10.4.0 (06/20/2025)
521
### New Features
622
* Add a new CF option `memtable_avg_op_scan_flush_trigger` that supports triggering memtable flush when an iterator scans through an expensive range of keys, with the average number of skipped keys from the active memtable exceeding the threshold.

unreleased_history/behavior_changes/get-waiting-txns-after-timeout.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

unreleased_history/behavior_changes/new_GetFileSize_api_at_FSRandomAccessFile_interface.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

unreleased_history/behavior_changes/periodic-compaction-trigger.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

unreleased_history/bug_fixes/backup-engine-crash.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

unreleased_history/bug_fixes/multi_scan_upper_bound.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

unreleased_history/performance_improvements/bbiter-multiscan.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

unreleased_history/public_api_changes/deprecate_flag_skip_checking_sst_file_sizes_on_db_open.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)