Skip to content

Commit 4c517fc

Browse files
[fix] Fixed spin_up_redis_cluster_remote_redis after module config parameters change (#271)
1 parent e63237a commit 4c517fc

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "redisbench-admin"
3-
version = "0.6.9"
3+
version = "0.6.10"
44
description = "Redis benchmark run helper. A wrapper around Redis and Redis Modules benchmark tools ( ftsb_redisearch, memtier_benchmark, redis-benchmark, aibench, etc... )."
55
authors = ["filipecosta90 <[email protected]>","Redis Performance Group <[email protected]>"]
66
readme = "README.md"

redisbench_admin/run/cluster.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ def spin_up_redis_cluster_remote_redis(
124124
server_private_ip,
125125
shard_port,
126126
redis_configuration_parameters,
127+
"yes",
127128
modules_configuration_parameters_map,
128129
)
129130
logging.error(

redisbench_admin/run_remote/standalone.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,5 +120,5 @@ def generate_remote_standalone_redis_cmd(
120120
command, mod, modules_configuration_parameters_map
121121
)
122122
if remote_module_files is not None:
123-
initial_redis_cmd += " ".join(command)
123+
initial_redis_cmd += " " + " ".join(command)
124124
return full_logfile, initial_redis_cmd

tests/test_data/[email protected]

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
version: 0.5
22
name: "tsbs-scale100-cpu-max-all-1@4139rps"
3+
description: '
4+
use case: tsbs devops scale 100 use-case
5+
tsbs query detail: Simple aggregrate (MAX) on one metric for 1 host, every 5 mins for 1 hour
6+
sample query: "TS.MRANGE" "1451639198469" "1451642798469" "AGGREGATION" "MAX" "60000" "FILTER" "measurement=cpu" "fieldname=usage_user" "hostname=host_55"
7+
'
38

49
metadata:
510
labels:

0 commit comments

Comments
 (0)