-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added memtier_benchmark-3Mkeys-load-string-with-512B-values. Included…
… 2,4,8,16,32,64 io-threads setups. (#262) * Added memtier_benchmark-3Mkeys-load-string-with-512B-values: Runs memtier_benchmark, for a keyspace length of 3M keys loading STRINGs in which the value has a data size of 512 Bytes, with 650 clients running sequential SET commands * Added tests for io-threads setups * Removed duplicate test * Fixed missing update tests
- Loading branch information
1 parent
bfef87a
commit ff49e64
Showing
12 changed files
with
382 additions
and
9 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
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
36 changes: 36 additions & 0 deletions
36
...marks_specification/test-suites/memtier_benchmark-3Mkeys-load-string-with-512B-values.yml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
version: 0.4 | ||
name: memtier_benchmark-3Mkeys-load-string-with-512B-values | ||
description: Runs memtier_benchmark, for a keyspace length of 3M keys loading STRINGs in which the value has a data size of 512 Bytes, with 650 clients running sequential SET commands. | ||
dbconfig: | ||
configuration-parameters: | ||
save: '""' | ||
check: | ||
keyspacelen: 0 | ||
resources: | ||
requests: | ||
memory: 3g | ||
tested-commands: | ||
- set | ||
redis-topologies: | ||
- oss-standalone | ||
- oss-standalone-02-io-threads | ||
- oss-standalone-04-io-threads | ||
- oss-standalone-08-io-threads | ||
- oss-standalone-16-io-threads | ||
- oss-standalone-32-io-threads | ||
- oss-standalone-64-io-threads | ||
build-variants: | ||
- gcc:8.5.0-amd64-debian-buster-default | ||
- dockerhub | ||
clientconfig: | ||
run_image: redislabs/memtier_benchmark:edge | ||
tool: memtier_benchmark | ||
arguments: '"--data-size" "512" --ratio 1:0 --key-pattern P:P --key-minimum=1 --key-maximum 3000000 --test-time 180 -c 50 -t 13 --hide-histogram' | ||
resources: | ||
requests: | ||
cpus: '13' | ||
memory: 2g | ||
|
||
tested-groups: | ||
- string | ||
priority: 17 |
30 changes: 30 additions & 0 deletions
30
utils/tests/test_data/test-suites/test-memtier-dockerhub-iothreads.yml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
version: 0.4 | ||
name: memtier_benchmark-1Mkeys-load-string-with-10B-values | ||
description: Runs memtier_benchmark, for a keyspace length of 1M keys loading STRINGs in which the value has a data size of 10 Bytes. | ||
dbconfig: | ||
configuration-parameters: | ||
save: '""' | ||
check: | ||
keyspacelen: 0 | ||
resources: | ||
requests: | ||
memory: 1g | ||
tested-commands: | ||
- set | ||
redis-topologies: | ||
- oss-standalone-02-io-threads | ||
build-variants: | ||
- gcc:8.5.0-amd64-debian-buster-default | ||
- dockerhub | ||
clientconfig: | ||
run_image: redislabs/memtier_benchmark:edge | ||
tool: memtier_benchmark | ||
arguments: '"--data-size" "10" --ratio 1:0 --key-pattern P:P --key-minimum=1 --key-maximum 1000000 --test-time 180 -c 50 -t 4 --hide-histogram' | ||
resources: | ||
requests: | ||
cpus: "1" | ||
memory: "2g" | ||
|
||
tested-groups: | ||
- string | ||
priority: 17 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
spec: | ||
setups: | ||
- name: oss-standalone | ||
type: oss-standalone | ||
redis_topology: | ||
primaries: 1 | ||
replicas: 0 | ||
resources: | ||
requests: | ||
cpus: "1" | ||
memory: "10g" | ||
|
||
- name: oss-standalone-02-io-threads | ||
type: oss-standalone | ||
redis_topology: | ||
primaries: 1 | ||
replicas: 0 | ||
redis_arguments: --io-threads 2 --io-threads-do-reads yes | ||
resources: | ||
requests: | ||
cpus: "1" | ||
memory: "10g" |
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
Oops, something went wrong.