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
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
200e43b
runtime: introduce ephemeral structures
miloserdow Feb 19, 2025
c3dd2ef
WIP(runtime): parallel verification draft (2)
miloserdow Feb 24, 2025
b484a01
first working version
miloserdow Mar 3, 2025
099e27d
got rid of hashmap in process_transactions, original order no longer …
miloserdow Mar 3, 2025
22e4f2f
wip
miloserdow Mar 6, 2025
b192e04
wip reduced
miloserdow Mar 6, 2025
7807be1
optimize parallel groups
miloserdow Mar 6, 2025
7e1069e
tidy up
miloserdow Mar 7, 2025
183c63f
fmt
miloserdow Mar 7, 2025
96b383e
fixed relaxed chunk validation feature
miloserdow Mar 7, 2025
6bce774
fmt
miloserdow Mar 7, 2025
0eb039b
synced with lastest master
miloserdow Mar 9, 2025
0c823d7
wip
miloserdow Mar 12, 2025
32f23cb
add TransactionGroup and TransactionGroup types
miloserdow Mar 12, 2025
fae98ce
fmt
miloserdow Mar 12, 2025
405b69b
Merge branch 'master' into miloserdow/threaded-verify-2
miloserdow Mar 12, 2025
17b39b2
merge master
miloserdow Mar 13, 2025
5a9eef1
tidy up grouping code
miloserdow Mar 13, 2025
6968c52
refactor transaction batches (ex. groups)
miloserdow Mar 14, 2025
153e952
clean up verify_and_charge_tx_ephemeral
miloserdow Mar 14, 2025
b022bbc
wip
miloserdow Mar 16, 2025
4a53dfc
return metrics
miloserdow Mar 16, 2025
aa0a2fc
merge master
miloserdow Mar 16, 2025
5bcd3c5
fix order, add test
miloserdow Mar 16, 2025
1b4bb18
tidy up
miloserdow Mar 17, 2025
65aa9e4
merge master
miloserdow Mar 17, 2025
65b6216
add miloserdow to cspell
miloserdow Mar 17, 2025
d4955e5
tidy up
miloserdow Mar 17, 2025
12f694a
merge master
miloserdow Mar 19, 2025
23dce46
merge master (fix compile error)
miloserdow Mar 19, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 4 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ rand_chacha = "0.3.1"
rand_core = "0.5"
rand_hc = "0.3.1"
rand_xorshift = "0.3"
rayon = "1.5"
rayon = "1.10"
redis = "0.23.0"
reed-solomon-erasure = { version = "6.0.0", features = ["simd-accel"] }
regex = "1.7.1"
Expand Down
4 changes: 4 additions & 0 deletions chain/chain/src/runtime/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -587,6 +587,8 @@ impl RuntimeAdapter for NightshadeRuntime {
// and therefore skip the check on the nonce upper bound.
None,
current_protocol_version,
None,
None,
)
.map(|_vr| ())
}
Expand Down Expand Up @@ -779,6 +781,8 @@ impl RuntimeAdapter for NightshadeRuntime {
&cost,
Some(next_block_height),
protocol_version,
None,
None,
)
})
.and_then(|verification_res| {
Expand Down
3 changes: 2 additions & 1 deletion cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@
"MILLI",
"Millinear",
"millis",
"miloserdow",
"mixeddb",
"moar",
"mocknet",
Expand Down Expand Up @@ -397,4 +398,4 @@
"funcs"
],
"import": []
}
}
2 changes: 2 additions & 0 deletions runtime/runtime-params-estimator/src/estimator_context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -472,6 +472,8 @@ impl Testbed<'_> {
&cost,
block_height,
PROTOCOL_VERSION,
None,
None,
)
.expect("tx verification should not fail in estimator");
commit_charging_for_tx(&mut state_update, &validated_tx, &vr.signer, &vr.access_key);
Expand Down
Loading
Loading