Don't persist BFT proposed blocks, only committed ones#7204
Merged
matthew1001 merged 10 commits intobesu-eth:mainfrom Jun 13, 2024
Merged
Don't persist BFT proposed blocks, only committed ones#7204matthew1001 merged 10 commits intobesu-eth:mainfrom
matthew1001 merged 10 commits intobesu-eth:mainfrom
Conversation
Signed-off-by: Matthew Whitehead <matthew1001@gmail.com>
Signed-off-by: Matthew Whitehead <matthew1001@gmail.com>
Signed-off-by: Matthew Whitehead <matthew1001@gmail.com>
Signed-off-by: Matt Whitehead <matthew.whitehead@kaleido.io>
Signed-off-by: Matthew Whitehead <matthew1001@gmail.com>
Signed-off-by: Matthew Whitehead <matthew1001@gmail.com>
Signed-off-by: Matthew Whitehead <matthew1001@gmail.com>
8 tasks
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
PR description
This PR changes BFT block proposal validation to not persist the changes as a result of the proposed block. When a QBFT
commitmessage or EthereumNewBlockmessage is processed the changes will still be persisted at that point.Prior to this PR I could only get a few 1000 transactions through a 4-validator QBFT chain before I hit
Invalid blockerror. With this fix in place I can run any number of high TPS tests against a 4-validator chain and have yet to see anInvalid blockerror.Fixed Issue(s)
Fixes #6680
(It might fix this issue, or there could still be something to resolve regarding the
RocksDB busyerror. I suspect this PR will improve the above issue at the very least, but suggest closing it with this PR and re-opening if it still occurs after this has merged)