Skip to content

Commit ff49e64

Browse files
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
1 parent bfef87a commit ff49e64

12 files changed

+382
-9
lines changed

redis_benchmarks_specification/__common__/spec.py

+52
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,56 @@
11
import math
2+
import logging
3+
4+
5+
def extract_redis_dbconfig_parameters(benchmark_config, dbconfig_keyname):
6+
redis_configuration_parameters = {}
7+
modules_configuration_parameters_map = {}
8+
dataset_load_timeout_secs = 120
9+
dataset_name = None
10+
dbconfig_present = False
11+
if dbconfig_keyname in benchmark_config:
12+
dbconfig_present = True
13+
if type(benchmark_config[dbconfig_keyname]) == list:
14+
for k in benchmark_config[dbconfig_keyname]:
15+
if "configuration-parameters" in k:
16+
cp = k["configuration-parameters"]
17+
for item in cp:
18+
for k, v in item.items():
19+
redis_configuration_parameters[k] = v
20+
if "dataset_load_timeout_secs" in k:
21+
dataset_load_timeout_secs = k["dataset_load_timeout_secs"]
22+
if "dataset_name" in k:
23+
dataset_name = k["dataset_name"]
24+
if type(benchmark_config[dbconfig_keyname]) == dict:
25+
if "configuration-parameters" in benchmark_config[dbconfig_keyname]:
26+
cp = benchmark_config[dbconfig_keyname]["configuration-parameters"]
27+
for k, v in cp.items():
28+
redis_configuration_parameters[k] = v
29+
if "dataset_load_timeout_secs" in benchmark_config[dbconfig_keyname]:
30+
dataset_load_timeout_secs = benchmark_config[dbconfig_keyname][
31+
"dataset_load_timeout_secs"
32+
]
33+
if "dataset_name" in benchmark_config[dbconfig_keyname]:
34+
dataset_name = benchmark_config[dbconfig_keyname]["dataset_name"]
35+
36+
return (
37+
dbconfig_present,
38+
dataset_name,
39+
redis_configuration_parameters,
40+
dataset_load_timeout_secs,
41+
modules_configuration_parameters_map,
42+
)
43+
44+
45+
def extract_redis_configuration_from_topology(topologies_map, topology_spec_name):
46+
redis_arguments = ""
47+
topology_spec = topologies_map[topology_spec_name]
48+
if "redis_arguments" in topology_spec:
49+
redis_arguments = topology_spec["redis_arguments"]
50+
logging.info(
51+
f"extracted redis_arguments: {redis_arguments} from topology: {topology_spec_name}"
52+
)
53+
return redis_arguments
254

355

456
def extract_client_cpu_limit(benchmark_config):

redis_benchmarks_specification/__self_contained_coordinator__/docker.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

1010
def generate_standalone_redis_server_args(
11-
binary, port, dbdir, configuration_parameters=None
11+
binary, port, dbdir, configuration_parameters=None, redis_arguments=""
1212
):
1313
added_params = ["port", "protected-mode", "dir"]
1414
# start redis-server
@@ -30,6 +30,10 @@ def generate_standalone_redis_server_args(
3030
parameter_value,
3131
]
3232
)
33+
if redis_arguments != "":
34+
redis_arguments_arr = redis_arguments.split(" ")
35+
logging.info(f"adding redis arguments {redis_arguments_arr}")
36+
command.extend(redis_arguments_arr)
3337
return command
3438

3539

redis_benchmarks_specification/__self_contained_coordinator__/runners.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
from redisbench_admin.run.run import calculate_client_tool_duration_and_check
3333
from redisbench_admin.utils.benchmark_config import (
3434
get_final_benchmark_config,
35-
extract_redis_dbconfig_parameters,
3635
)
3736
from redisbench_admin.utils.local import get_local_run_full_filename
3837
from redisbench_admin.utils.results import post_process_benchmark_results
@@ -47,6 +46,7 @@
4746
extract_client_cpu_limit,
4847
extract_client_tool,
4948
extract_client_container_image,
49+
extract_redis_dbconfig_parameters,
5050
)
5151
from redis_benchmarks_specification.__self_contained_coordinator__.artifacts import (
5252
restore_build_artifacts_from_test_details,

redis_benchmarks_specification/__self_contained_coordinator__/self_contained_coordinator.py

+17-4
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@
8080
from redisbench_admin.run.run import calculate_client_tool_duration_and_check
8181
from redisbench_admin.utils.benchmark_config import (
8282
get_final_benchmark_config,
83-
extract_redis_dbconfig_parameters,
8483
get_defaults,
8584
)
8685
from redisbench_admin.utils.local import get_local_run_full_filename
@@ -95,6 +94,8 @@
9594
extract_client_cpu_limit,
9695
extract_client_tool,
9796
extract_client_container_image,
97+
extract_redis_dbconfig_parameters,
98+
extract_redis_configuration_from_topology,
9899
)
99100
from redis_benchmarks_specification.__self_contained_coordinator__.artifacts import (
100101
restore_build_artifacts_from_test_details,
@@ -756,13 +757,26 @@ def process_self_contained_coordinator_stream(
756757
)
757758
)
758759
for topology_spec_name in benchmark_config["redis-topologies"]:
760+
setup_name = topology_spec_name
761+
setup_type = "oss-standalone"
762+
if topology_spec_name in topologies_map:
763+
topology_spec = topologies_map[topology_spec_name]
764+
setup_type = topology_spec["type"]
765+
logging.info(
766+
f"Running topology named {topology_spec_name} of type {setup_type}"
767+
)
759768
test_result = False
760769
redis_container = None
761770
try:
762771
current_cpu_pos = cpuset_start_pos
763772
ceil_db_cpu_limit = extract_db_cpu_limit(
764773
topologies_map, topology_spec_name
765774
)
775+
redis_arguments = (
776+
extract_redis_configuration_from_topology(
777+
topologies_map, topology_spec_name
778+
)
779+
)
766780
temporary_dir = tempfile.mkdtemp(dir=home)
767781
temporary_dir_client = tempfile.mkdtemp(dir=home)
768782
logging.info(
@@ -776,8 +790,6 @@ def process_self_contained_coordinator_stream(
776790
)
777791
)
778792

779-
setup_name = "oss-standalone"
780-
setup_type = "oss-standalone"
781793
tf_triggering_env = "ci"
782794
github_actor = "{}-{}".format(
783795
tf_triggering_env, running_platform
@@ -814,6 +826,7 @@ def process_self_contained_coordinator_stream(
814826
redis_proc_start_port,
815827
mnt_point,
816828
redis_configuration_parameters,
829+
redis_arguments,
817830
)
818831
command_str = " ".join(command)
819832
db_cpuset_cpus, current_cpu_pos = generate_cpuset_cpus(
@@ -926,7 +939,7 @@ def process_self_contained_coordinator_stream(
926939
start_time_str,
927940
git_hash,
928941
test_name,
929-
"oss-standalone",
942+
setup_name,
930943
)
931944
)
932945
logging.info(

redis_benchmarks_specification/setups/topologies/topologies.yml

+65
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,71 @@ spec:
1010
cpus: "1"
1111
memory: "10g"
1212

13+
- name: oss-standalone-02-io-threads
14+
type: oss-standalone
15+
redis_topology:
16+
primaries: 1
17+
replicas: 0
18+
redis_arguments: --io-threads 2 --io-threads-do-reads yes
19+
resources:
20+
requests:
21+
cpus: "3"
22+
memory: "10g"
23+
24+
- name: oss-standalone-04-io-threads
25+
type: oss-standalone
26+
redis_topology:
27+
primaries: 1
28+
replicas: 0
29+
redis_arguments: --io-threads 4 --io-threads-do-reads yes
30+
resources:
31+
requests:
32+
cpus: "5"
33+
memory: "10g"
34+
35+
- name: oss-standalone-08-io-threads
36+
type: oss-standalone
37+
redis_topology:
38+
primaries: 1
39+
replicas: 0
40+
redis_arguments: --io-threads 8 --io-threads-do-reads yes
41+
resources:
42+
requests:
43+
cpus: "9"
44+
memory: "10g"
45+
46+
- name: oss-standalone-16-io-threads
47+
type: oss-standalone
48+
redis_topology:
49+
primaries: 1
50+
replicas: 0
51+
redis_arguments: --io-threads 16 --io-threads-do-reads yes
52+
resources:
53+
requests:
54+
cpus: "17"
55+
memory: "10g"
56+
57+
- name: oss-standalone-32-io-threads
58+
type: oss-standalone
59+
redis_topology:
60+
primaries: 1
61+
replicas: 0
62+
redis_arguments: --io-threads 32 --io-threads-do-reads yes
63+
resources:
64+
requests:
65+
cpus: "33"
66+
memory: "10g"
67+
68+
- name: oss-standalone-64-io-threads
69+
type: oss-standalone
70+
redis_topology:
71+
primaries: 1
72+
replicas: 0
73+
redis_arguments: --io-threads 64 --io-threads-do-reads yes
74+
resources:
75+
requests:
76+
cpus: "65"
77+
memory: "10g"
1378
- name: oss-standalone-1replica
1479
type: oss-standalone
1580
redis_topology:
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
version: 0.4
2+
name: memtier_benchmark-3Mkeys-load-string-with-512B-values
3+
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.
4+
dbconfig:
5+
configuration-parameters:
6+
save: '""'
7+
check:
8+
keyspacelen: 0
9+
resources:
10+
requests:
11+
memory: 3g
12+
tested-commands:
13+
- set
14+
redis-topologies:
15+
- oss-standalone
16+
- oss-standalone-02-io-threads
17+
- oss-standalone-04-io-threads
18+
- oss-standalone-08-io-threads
19+
- oss-standalone-16-io-threads
20+
- oss-standalone-32-io-threads
21+
- oss-standalone-64-io-threads
22+
build-variants:
23+
- gcc:8.5.0-amd64-debian-buster-default
24+
- dockerhub
25+
clientconfig:
26+
run_image: redislabs/memtier_benchmark:edge
27+
tool: memtier_benchmark
28+
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'
29+
resources:
30+
requests:
31+
cpus: '13'
32+
memory: 2g
33+
34+
tested-groups:
35+
- string
36+
priority: 17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
version: 0.4
2+
name: memtier_benchmark-1Mkeys-load-string-with-10B-values
3+
description: Runs memtier_benchmark, for a keyspace length of 1M keys loading STRINGs in which the value has a data size of 10 Bytes.
4+
dbconfig:
5+
configuration-parameters:
6+
save: '""'
7+
check:
8+
keyspacelen: 0
9+
resources:
10+
requests:
11+
memory: 1g
12+
tested-commands:
13+
- set
14+
redis-topologies:
15+
- oss-standalone-02-io-threads
16+
build-variants:
17+
- gcc:8.5.0-amd64-debian-buster-default
18+
- dockerhub
19+
clientconfig:
20+
run_image: redislabs/memtier_benchmark:edge
21+
tool: memtier_benchmark
22+
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'
23+
resources:
24+
requests:
25+
cpus: "1"
26+
memory: "2g"
27+
28+
tested-groups:
29+
- string
30+
priority: 17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
spec:
2+
setups:
3+
- name: oss-standalone
4+
type: oss-standalone
5+
redis_topology:
6+
primaries: 1
7+
replicas: 0
8+
resources:
9+
requests:
10+
cpus: "1"
11+
memory: "10g"
12+
13+
- name: oss-standalone-02-io-threads
14+
type: oss-standalone
15+
redis_topology:
16+
primaries: 1
17+
replicas: 0
18+
redis_arguments: --io-threads 2 --io-threads-do-reads yes
19+
resources:
20+
requests:
21+
cpus: "1"
22+
memory: "10g"

utils/tests/test_runner.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ def test_extract_testsuites():
258258
]
259259
)
260260
tests = extract_testsuites(args)
261-
assert len(tests) == 7
261+
assert len(tests) == 9
262262

263263
args = parser.parse_args(
264264
args=[
@@ -269,7 +269,7 @@ def test_extract_testsuites():
269269
]
270270
)
271271
tests = extract_testsuites(args)
272-
assert len(tests) == 7
272+
assert len(tests) == 9
273273

274274
args = parser.parse_args(
275275
args=[

0 commit comments

Comments
 (0)