-
Notifications
You must be signed in to change notification settings - Fork 251
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
created a bench tool for votes #4085
created a bench tool for votes #4085
Conversation
65547ef
to
d8b7f26
Compare
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.
have you tested that this successfully runs?
Yes. With the following configurations: server and client together Run the server: sol@lijun-dev-ny:~/src/agave$ ./target/release/solana-bench-vote --use-connection-cache --num-recv-sockets 8 --num-producers 16 --server-only --server-address 0.0.0.0:11228 --verbose Run the client: ./target/release/solana-bench-vote --num-recv-sockets 8 --num-producers 16 --client-only --server-address 139.178.67.243:11228 --use-connection-cache |
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.
lgtm
Problem
We have a bench tool for streamer which is tailored for regular transactions not for votes. I created a bench tool for votes by modeling the bench streamer.
Summary of Changes
The tool support sending votes via direct UDP or connection cache. It can be enhanced to do either UDP or QUIC later.
Fixes #