Skip to content

Extend RocksDB to also support asynchronous read operations #3008

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
tillrohrmann opened this issue Mar 26, 2025 · 1 comment
Open

Extend RocksDB to also support asynchronous read operations #3008

tillrohrmann opened this issue Mar 26, 2025 · 1 comment
Assignees

Comments

@tillrohrmann
Copy link
Contributor

Right now, our RocksDB abstraction supports asynchronous writes to the underlying RocksDB database. What it currently lacks is support for reading data (synchronously as well as asynchronously). Instead when reading data we are directly accessing the underlying db object:

/// todo: remove this once all access is migrated to this abstraction
. It would be great to extend RocksDB to also support asynchronous read operations. This is a prerequisite for letting multiple PartitionProcessors run on the same Tokio runtime. Otherwise, blocking RocksDB read operations might block shared Tokio threads.

@AhmedSoliman
Copy link
Contributor

AhmedSoliman commented Mar 26, 2025

This also needs to include iterators (including log-servers)

@muhamadazmy muhamadazmy self-assigned this Apr 1, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants