-
Notifications
You must be signed in to change notification settings - Fork 11.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Execute sequenced certs serially in execution driver (#5788)
* Execute sequenced certs serially in execution driver * Just use a bool to indicate whether sequenced * PR comments * Prioritize sequenced over unsequenced when there are duplicates
- Loading branch information
1 parent
842fbd9
commit 264bc42
Showing
4 changed files
with
146 additions
and
32 deletions.
There are no files selected for viewing
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
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
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
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
264bc42
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.
Benchmark Reports:
target/debug/stress --log-path /tmp/stress.log --num-client-threads 10 --num-server-threads 24 --num-transfer-accounts 2 bench --target-qps 100 --num-workers 10 --transfer-object 100 --run-duration 60s
Benchmark Report: +-------------+-----+--------+-----+-----+-----+-----+-----+-----+-------+-----+ | duration(s) | tps | error% | min | p25 | p50 | p75 | p90 | p99 | p99.9 | max | +==============================================================================+ | 60 | 99 | 0 | 115 | 210 | 257 | 315 | 329 | 361 | 375 | 385 |target/debug/stress --log-path /tmp/stress.log --num-client-threads 10 --num-server-threads 24 --num-transfer-accounts 2 bench --target-qps 100 --num-workers 10 --shared-counter 100 --run-duration 60s
Benchmark Report: +-------------+-----+--------+-----+-----+-----+-----+-----+------+-------+------+ | duration(s) | tps | error% | min | p25 | p50 | p75 | p90 | p99 | p99.9 | max | +================================================================================+ | 60 | 99 | 0 | 120 | 587 | 667 | 763 | 855 | 1039 | 1143 | 1175 |