-
Notifications
You must be signed in to change notification settings - Fork 132
perf(l1)!: separate Account and storage Column families #5055
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
Merged
Merged
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
6f72dad
Separate in fkv generator, triedb, trie openers. Pending: apply updates
Arkenan e982dac
merge with main
Arkenan f4a30bb
revert some changes to main, move some to apply_trie_updates
Arkenan 89a7b41
fix warning. Separate node writes in accounts and storages
Arkenan 2460e46
fix db test
Arkenan e1b543f
fix lint
Arkenan 057820e
separate cfs in locked trie
Arkenan 84901c9
Fix account in open direct state
Arkenan 7f89472
merge with stash
Arkenan e462dba
Merge branch 'main' into separate-accounts-and-storage-rocksdb
Arkenan 99c1ce8
Fix genesis setup so that it doesn't call put_batch
Arkenan 3b431a5
Remove some printlns, tidy some code, fix some tests
Arkenan 4d8903a
remove unnecessary changes in smoke test
Arkenan 64a7192
remove printlns
Arkenan 7a84201
remove trash files
Arkenan d55c9f4
merge with main
Arkenan 3043984
fix merging bug
Arkenan 6a345c5
Merge branch 'main' into separate-accounts-and-storage-rocksdb
edg-l 7fc56e7
Merge remote-tracking branch 'origin/main' into separate-accounts-and…
edg-l 59533f4
fix
edg-l 53a0402
fmt
edg-l 08eefec
changelog
edg-l 1cd7021
lint
edg-l d29e669
Merge branch 'main' into separate-accounts-and-storage-rocksdb
jrchatruc c7e9b76
fmt
jrchatruc 4a8be57
Merge branch 'main' into separate-accounts-and-storage-rocksdb
jrchatruc 1448925
Merge branch 'main' into separate-accounts-and-storage-rocksdb
edg-l d73dd15
comment
edg-l 0c598ff
Merge branch 'main' into separate-accounts-and-storage-rocksdb
edg-l a812bcb
Merge branch 'main' into separate-accounts-and-storage-rocksdb
edg-l 459414c
Merge branch 'main' into separate-accounts-and-storage-rocksdb
MegaRedHand File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Can't we do it like before, with
Trie::collect_changes_since_last_hash()? We can store the changes inside a shared buffer, and dump it in the DB at the end.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.
I agree, we already have
commit_without_storingfor that.That said, the genesis runs exactly once and I think it's quick enough as it is.