-
Notifications
You must be signed in to change notification settings - Fork 784
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
Modularize beacon node backend #4718
base: unstable
Are you sure you want to change the base?
Conversation
…dularize-beacon-node-backend
I'm currently working on adding Redb to the beacon node backend. Here are some notes I've taken so far on my work RedbTheres a few difference's between LevelDB and Redb that I'll describe below fsyncInfo about redb transaction durability can be found here For now I translate We could decide to use CompactionLevelDB allows for compacting over a range of values. Redb only allows for compacting the full db. It seems like our LevelDB implementation compacts across all keys in the DB. If thats the case we should be all good here. TablesRedb introduces the concept of tables. We can either use one table for everything, or spin up tables by column name. I'm currently going down the path of spinning up tables by column name. This causes issues with |
…dularize-beacon-node-backend
…dularize-beacon-node-backend
…dularize-beacon-node-backend
…serilev/lighthouse into modularize-beacon-node-backend
#[test] | ||
fn beacon_node_backend_override() { | ||
CommandLineTest::new() | ||
.flag("beacon-node-backend", Some("leveldb")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be ideal to have a test that sets this to redb
, as the flag was actually completely defunct and this test still passed. But I think this would require compiling with beacon-node-redb
as a default feature. Hmm 🤔
Issue Addressed
#4669
Proposed Changes
Modularize the beacon node backend to make it easier to add new database implementations
Additional Info
The existing
KeyValueStore
trait already does some abstraction, however the codebases assumes the KV store is always LevelDB.I created a
BeaconNodeBackend
type that implements theKeyValueStore
andItemStore
traits. I then replaced all references ofLevelDb
to the newBeaconNodeBackend
type. Within theBeaconNodeBackend
type I used thecfg
macro which should allow us to switch between different database implementations via config changes.