Last active
August 29, 2015 14:04
-
-
Save benbjohnson/59b57e3772bfb7a65fbf to your computer and use it in GitHub Desktop.
bolt bench
This file contains hidden or 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
$ bolt bench --batch-size 1 --count 10000 --write-mode rnd | |
# Write 4.102113174s (410.211us/op) (2437 op/sec) | |
$ bolt bench --batch-size 10 --count 100000 --write-mode rnd | |
# Write 12.084931999s (120.849us/op) (8274 op/sec) | |
$ bolt bench --batch-size 100 --count 100000 --write-mode rnd | |
# Write 5.436509914s (54.365us/op) (18394 op/sec) | |
$ bolt bench --batch-size 1000 --count 100000 --write-mode rnd | |
# Write 2.540646781s (25.406us/op) (39360 op/sec) | |
This file contains hidden or 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
$ bolt bench --batch-size 1 --count 10000 --write-mode seq | |
# Write 4.02264678s (402.264us/op) (2485 op/sec) | |
$ bolt bench --batch-size 10 --count 100000 --write-mode seq | |
# Write 4.399936454s (43.999us/op) (22727 op/sec) | |
$ bolt bench --batch-size 100 --count 100000 --write-mode seq | |
# Write 646.53057ms (6.465us/op) (154679 op/sec) | |
$ bolt bench --batch-size 1000 --count 1000000 --write-mode seq | |
# Write 2.621294165s (2.621us/op) (381533 op/sec) | |
$ bolt bench --batch-size 10000 --count 1000000 --write-mode seq | |
# Write 2.487659385s (2.487us/op) (402090 op/sec) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment