-
Notifications
You must be signed in to change notification settings - Fork 690
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
runtime: parallel transaction verification #12983
Conversation
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.
See inline comments for suggestions for improvements. Most importantly I would like to see the duplication of code between ephermal_data.rs
and verifier.rs
go away.
9f1cfe5
to
7c9782a
Compare
f814152
to
baa9cff
Compare
Introduces ephemeral structures used to accumulate changes for parallel transaction verification in runtime
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #12983 +/- ##
===========================================
+ Coverage 1.74% 70.02% +68.28%
===========================================
Files 671 866 +195
Lines 121044 177230 +56186
Branches 121044 177230 +56186
===========================================
+ Hits 2113 124108 +121995
+ Misses 118827 47922 -70905
- Partials 104 5200 +5096
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This reverts commit 0d1eb42. The reason for revert is that change brakes archival nodes.
During the development of parallel transaction processing (near#12983), we encountered a bug when multiple transactions from the same account using different keys were included in a single chunk. In this scenario, the account balance was calculated incorrectly because these transactions were processed in parallel. This PR adds two new tests: one to verify the correct ordering of transaction outcomes and another to validate transactions signed with different keys from the same account.
During the development of parallel transaction processing (near#12983), we encountered a bug when multiple transactions from the same account using different keys were included in a single chunk. In this scenario, the account balance was calculated incorrectly because these transactions were processed in parallel. This PR adds two new tests: one to verify the correct ordering of transaction outcomes and another to validate transactions signed with different keys from the same account.
During the development of parallel transaction processing (near#12983), we encountered a bug when multiple transactions from the same account using different keys were included in a single chunk. In this scenario, the account balance was calculated incorrectly because these transactions were processed in parallel. This PR adds two new tests: one to verify the correct ordering of transaction outcomes and another to validate transactions signed with different keys from the same account.
During the development of parallel transaction processing (#12983), we encountered a bug when multiple transactions from the same account using different keys were included in a single chunk. In this scenario, the account balance was calculated incorrectly because these transactions were processed in parallel. This PR adds two new tests: one to verify the correct ordering of transaction outcomes and another to validate transactions signed with different keys from the same account.
During the development of parallel transaction processing (#12983), we encountered a bug when multiple transactions from the same account using different keys were included in a single chunk. In this scenario, the account balance was calculated incorrectly because these transactions were processed in parallel. This PR adds two new tests: one to verify the correct ordering of transaction outcomes and another to validate transactions signed with different keys from the same account.
Now we group transactions by
(account, access_key)
sorted by nonce and verify those groups in parallel. Then we apply state updates and process receipts sequentially.