Skip to content

Commit 54d6286

Browse files
committedDec 15, 2023
Update HISTORY.md for 8.10
1 parent cc069f2 commit 54d6286

13 files changed

+38
-27
lines changed
 

‎HISTORY.md

+38
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,44 @@
11
# Rocksdb Change Log
22
> NOTE: Entries for next release do not go here. Follow instructions in `unreleased_history/README.txt`
33
4+
## 8.10.0 (12/15/2023)
5+
### New Features
6+
* Provide support for async_io to trim readahead_size by doing block cache lookup
7+
* Added initial wide-column support in `WriteBatchWithIndex`. This includes the `PutEntity` API and support for wide columns in the existing read APIs (`GetFromBatch`, `GetFromBatchAndDB`, `MultiGetFromBatchAndDB`, and `BaseDeltaIterator`).
8+
9+
### Public API Changes
10+
* Custom implementations of `TablePropertiesCollectorFactory` may now return a `nullptr` collector to decline processing a file, reducing callback overheads in such cases.
11+
12+
### Behavior Changes
13+
* Make ReadOptions.auto_readahead_size default true which does prefetching optimizations for forward scans if iterate_upper_bound and block_cache is also specified.
14+
* Compactions can be scheduled in parallel in an additional scenario: high compaction debt relative to the data size
15+
* HyperClockCache now has built-in protection against excessive CPU consumption under the extreme stress condition of no (or very few) evictable cache entries, which can slightly increase memory usage such conditions. New option `HyperClockCacheOptions::eviction_effort_cap` controls the space-time trade-off of the response. The default should be generally well-balanced, with no measurable affect on normal operation.
16+
17+
### Bug Fixes
18+
* Fix a corner case with auto_readahead_size where Prev Operation returns NOT SUPPORTED error when scans direction is changed from forward to backward.
19+
* Avoid destroying the periodic task scheduler's default timer in order to prevent static destruction order issues.
20+
* Fix double counting of BYTES_WRITTEN ticker when doing writes with transactions.
21+
* Fix a WRITE_STALL counter that was reporting wrong value in few cases.
22+
* A lookup by MultiGet in a TieredCache that goes to the local flash cache and finishes with very low latency, i.e before the subsequent call to WaitAll, is ignored, resulting in a false negative and a memory leak.
23+
24+
### Performance Improvements
25+
* Java API extensions to improve consistency and completeness of APIs
26+
1 Extended `RocksDB.get([ColumnFamilyHandle columnFamilyHandle,] ReadOptions opt, ByteBuffer key, ByteBuffer value)` which now accepts indirect buffer parameters as well as direct buffer parameters
27+
2 Extended `RocksDB.put( [ColumnFamilyHandle columnFamilyHandle,] WriteOptions writeOpts, final ByteBuffer key, final ByteBuffer value)` which now accepts indirect buffer parameters as well as direct buffer parameters
28+
3 Added `RocksDB.merge([ColumnFamilyHandle columnFamilyHandle,] WriteOptions writeOptions, ByteBuffer key, ByteBuffer value)` methods with the same parameter options as `put(...)` - direct and indirect buffers are supported
29+
4 Added `RocksIterator.key( byte[] key [, int offset, int len])` methods which retrieve the iterator key into the supplied buffer
30+
5 Added `RocksIterator.value( byte[] value [, int offset, int len])` methods which retrieve the iterator value into the supplied buffer
31+
6 Deprecated `get(final ColumnFamilyHandle columnFamilyHandle, final ReadOptions readOptions, byte[])` in favour of `get(final ReadOptions readOptions, final ColumnFamilyHandle columnFamilyHandle, byte[])` which has consistent parameter ordering with other methods in the same class
32+
7 Added `Transaction.get( ReadOptions opt, [ColumnFamilyHandle columnFamilyHandle, ] byte[] key, byte[] value)` methods which retrieve the requested value into the supplied buffer
33+
8 Added `Transaction.get( ReadOptions opt, [ColumnFamilyHandle columnFamilyHandle, ] ByteBuffer key, ByteBuffer value)` methods which retrieve the requested value into the supplied buffer
34+
9 Added `Transaction.getForUpdate( ReadOptions readOptions, [ColumnFamilyHandle columnFamilyHandle, ] byte[] key, byte[] value, boolean exclusive [, boolean doValidate])` methods which retrieve the requested value into the supplied buffer
35+
10 Added `Transaction.getForUpdate( ReadOptions readOptions, [ColumnFamilyHandle columnFamilyHandle, ] ByteBuffer key, ByteBuffer value, boolean exclusive [, boolean doValidate])` methods which retrieve the requested value into the supplied buffer
36+
11 Added `Transaction.getIterator()` method as a convenience which defaults the `ReadOptions` value supplied to existing `Transaction.iterator()` methods. This mirrors the existing `RocksDB.iterator()` method.
37+
12 Added `Transaction.put([ColumnFamilyHandle columnFamilyHandle, ] ByteBuffer key, ByteBuffer value [, boolean assumeTracked])` methods which supply the key, and the value to be written in a `ByteBuffer` parameter
38+
13 Added `Transaction.merge([ColumnFamilyHandle columnFamilyHandle, ] ByteBuffer key, ByteBuffer value [, boolean assumeTracked])` methods which supply the key, and the value to be written/merged in a `ByteBuffer` parameter
39+
14 Added `Transaction.mergeUntracked([ColumnFamilyHandle columnFamilyHandle, ] ByteBuffer key, ByteBuffer value)` methods which supply the key, and the value to be written/merged in a `ByteBuffer` parameter
40+
41+
442
## 8.9.0 (11/17/2023)
543
### New Features
644
* Add GetEntity() and PutEntity() API implementation for Attribute Group support. Through the use of Column Families, AttributeGroup enables users to logically group wide-column entities.

‎unreleased_history/behavior_changes/auto_readahead_size.md

-1
This file was deleted.

‎unreleased_history/behavior_changes/debt_based_speedup.md

-1
This file was deleted.

‎unreleased_history/behavior_changes/eviction_effort_cap.md

-1
This file was deleted.

‎unreleased_history/bug_fixes/auto_readahead_size.md

-1
This file was deleted.

‎unreleased_history/bug_fixes/avoid_destroying_timer.md

-1
This file was deleted.

‎unreleased_history/bug_fixes/fix_bytes_written_ticker_double_counting.md

-1
This file was deleted.

‎unreleased_history/bug_fixes/fix_stall_counter.md

-1
This file was deleted.

‎unreleased_history/bug_fixes/tiered_cache_low_latency_false_negative.md

-1
This file was deleted.

‎unreleased_history/new_features/async_support_tune_readahead.md

-1
This file was deleted.

‎unreleased_history/new_features/wbwi_wide_columns.md

-1
This file was deleted.

‎unreleased_history/performance_improvements/java_api_consistency.md

-16
This file was deleted.

‎unreleased_history/public_api_changes/null_collector.md

-1
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.