Skip to content
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

Merged
merged 30 commits into from
Mar 19, 2025

Conversation

miloserdow
Copy link
Member

@miloserdow miloserdow commented Feb 24, 2025

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.

@miloserdow miloserdow added the S-donotmerge Status: do not merge this PR label Feb 24, 2025
Copy link
Collaborator

@nagisa nagisa left a 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.

@miloserdow miloserdow force-pushed the miloserdow/threaded-verify-2 branch 3 times, most recently from 9f1cfe5 to 7c9782a Compare March 7, 2025 16:07
@miloserdow miloserdow removed the S-donotmerge Status: do not merge this PR label Mar 7, 2025
@miloserdow miloserdow marked this pull request as ready for review March 7, 2025 16:42
@miloserdow miloserdow requested a review from a team as a code owner March 7, 2025 16:42
@miloserdow miloserdow requested a review from Longarithm March 7, 2025 16:42
@miloserdow miloserdow changed the title WIP(runtime): parallel transaction verification draft runtime: parallel transaction verification Mar 7, 2025
@miloserdow miloserdow requested a review from nagisa March 7, 2025 16:46
@miloserdow miloserdow force-pushed the miloserdow/threaded-verify-2 branch from f814152 to baa9cff Compare March 9, 2025 20:40
Copy link

codecov bot commented Mar 17, 2025

Codecov Report

Attention: Patch coverage is 92.64706% with 15 lines in your changes missing coverage. Please review.

Project coverage is 70.02%. Comparing base (ccf16b5) to head (65b6216).

Files with missing lines Patch % Lines
runtime/runtime/src/lib.rs 93.88% 5 Missing and 6 partials ⚠️
runtime/runtime/src/verifier.rs 85.71% 1 Missing and 2 partials ⚠️
.../runtime-params-estimator/src/estimator_context.rs 0.00% 1 Missing ⚠️
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     
Flag Coverage Δ
backward-compatibility 0.36% <0.00%> (?)
db-migration 0.36% <0.00%> (?)
genesis-check 1.43% <0.00%> (-0.01%) ⬇️
linux 69.87% <92.64%> (+68.13%) ⬆️
linux-nightly 69.57% <92.64%> (?)
pytests 1.74% <0.00%> (-0.01%) ⬇️
sanity-checks 1.55% <0.00%> (-0.01%) ⬇️
unittests 69.86% <92.64%> (?)
upgradability 0.36% <0.00%> (-0.01%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@miloserdow miloserdow added this pull request to the merge queue Mar 19, 2025
Merged via the queue into master with commit 0d1eb42 Mar 19, 2025
22 of 24 checks passed
@miloserdow miloserdow deleted the miloserdow/threaded-verify-2 branch March 19, 2025 04:49
miloserdow added a commit that referenced this pull request Mar 19, 2025
This reverts commit 0d1eb42.

The reason for revert is that change brakes archival nodes.
github-merge-queue bot pushed a commit that referenced this pull request Mar 19, 2025
This reverts commit 0d1eb42.

The reason for revert is that change brakes archival nodes / canaries.
miloserdow added a commit to miloserdow/nearcore that referenced this pull request Mar 20, 2025
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.
miloserdow added a commit to miloserdow/nearcore that referenced this pull request Mar 20, 2025
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.
miloserdow added a commit to miloserdow/nearcore that referenced this pull request Mar 25, 2025
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.
github-merge-queue bot pushed a commit that referenced this pull request Mar 25, 2025
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.
wacban pushed a commit that referenced this pull request Mar 25, 2025
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.
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

Successfully merging this pull request may close these issues.

3 participants