nicktelford opened a new pull request, #15105:
URL: https://github.com/apache/kafka/pull/15105
To support future use-cases that use different strategies for accessing
RocksDB, we need to de-couple the RocksDB access strategy from the Column
Family access strategy.
To do this, we now have two separate accessors:
* `DBAccessor`: dictates how we access RocksDB. Currently only one
strategy is supported: `DirectDBAccessor`, which access RocksDB directly, via
the `RocksDB` class for all operations. In the future, a `BatchedDBAccessor`
will be added, which enables transactions via `WriteBatch`.
* `ColumnFamilyAccessor`: maps StateStore operations to operations on one
or more column families. This is a rename of the old `RocksDBDBAccessor`.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]