forked from solana-labs/solana
-
Notifications
You must be signed in to change notification settings - Fork 1
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
Banking tracer with simulator wip #2
Draft
ryoqun
wants to merge
140
commits into
banking-tracer
Choose a base branch
from
banking-tracer-with-simulator-wip
base: banking-tracer
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Conversation
This file contains 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
11 tasks
ryoqun
force-pushed
the
banking-tracer-with-simulator-wip
branch
3 times, most recently
from
December 21, 2022 03:31
21db768
to
5fa3f19
Compare
ryoqun
force-pushed
the
banking-tracer
branch
2 times, most recently
from
December 21, 2022 13:03
1482637
to
b76ed3d
Compare
ryoqun
force-pushed
the
banking-tracer-with-simulator-wip
branch
from
December 21, 2022 13:52
8880bff
to
3a068cf
Compare
ryoqun
force-pushed
the
banking-tracer
branch
from
January 15, 2023 03:10
ff05cb8
to
0d2e227
Compare
ryoqun
force-pushed
the
banking-tracer-with-simulator-wip
branch
from
January 15, 2023 03:57
e68df27
to
e20fe52
Compare
ryoqun
commented
Jan 15, 2023
@@ -547,3 +555,467 @@ mod tests { | |||
for_test::drop_and_clean_temp_dir_unless_suppressed(temp_dir); | |||
} | |||
} | |||
|
|||
// This creates a simulated environment around the banking stage to reproduce leader's blocks based |
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.
here
ryoqun
force-pushed
the
banking-tracer
branch
6 times, most recently
from
January 25, 2023 03:50
14ec1d1
to
54042b2
Compare
ryoqun
force-pushed
the
banking-tracer
branch
2 times, most recently
from
January 25, 2023 08:26
947701c
to
84e9520
Compare
ryoqun
force-pushed
the
banking-tracer-with-simulator-wip
branch
from
January 25, 2023 12:06
e20fe52
to
9adf66e
Compare
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.
this is wip pr/branch just to be shared quickly, not intended for code-reviews (even including casual ones!); built on solana-labs#29196
Problem
this kinda work...: i.e reference vs simulation kinda exhibit similar throughput and each simulations are quite similar in numbers. the first bank's hash is even identical. lol
reference
https://explorer.solana.com/block/167249284?cluster=testnet
https://explorer.solana.com/block/167249285?cluster=testnet
https://explorer.solana.com/block/167249286?cluster=testnet
https://explorer.solana.com/block/167249287?cluster=testnet
simulations
solana-ledger-tool -- --ledger ~/ledger-testnet-for-tracer-slot-167249284/ simulate-leader-blocks --halt-at-slot 167249283 < ~/ledger-testnet-for-tracer-slot-167249284/banking_trace/events
run 1
run 2
run 3
Summary of Changes
Fixes #