mirror of
https://github.com/valitydev/riak_test.git
synced 2024-11-06 08:35:22 +00:00
15 lines
500 B
Bash
Executable File
15 lines
500 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cp examples/riak_test.config.perf ~/.riak_test.config
|
|
make clean
|
|
make
|
|
|
|
echo "Running the CRDT team benchmark."
|
|
./riak_test -c rtperf -t crdt_team_map -v -- --run-time 20 --ram-size 61440 --name crdt_team_map
|
|
|
|
echo "Running the get/put benchmark."
|
|
./riak_test -c rtperf -t get_put -v -- --run-time 20 --ram-size 61440 --name get_put
|
|
|
|
echo "Running the consistent get/put benchmark."
|
|
./riak_test -c rtperf -t consistent_get_put -v -- --run-time 20 --ram-size 61440 --name consistent_get_put
|