redisbench-admin 0.11.67__py3-none-any.whl → 0.11.69__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- redisbench_admin/run_remote/run_remote.py +4 -2
- redisbench_admin/utils/utils.py +16 -0
- {redisbench_admin-0.11.67.dist-info → redisbench_admin-0.11.69.dist-info}/METADATA +1 -1
- {redisbench_admin-0.11.67.dist-info → redisbench_admin-0.11.69.dist-info}/RECORD +7 -7
- {redisbench_admin-0.11.67.dist-info → redisbench_admin-0.11.69.dist-info}/WHEEL +0 -0
- {redisbench_admin-0.11.67.dist-info → redisbench_admin-0.11.69.dist-info}/entry_points.txt +0 -0
- {redisbench_admin-0.11.67.dist-info → redisbench_admin-0.11.69.dist-info}/licenses/LICENSE +0 -0
|
@@ -440,6 +440,8 @@ def run_remote_command_logic(args, project_name, project_version):
|
|
|
440
440
|
|
|
441
441
|
setup_settings = setup_details["setup_settings"]
|
|
442
442
|
benchmarks_map = setup_details["benchmarks"]
|
|
443
|
+
if 'env' not in setup_details:
|
|
444
|
+
setup_details["env"] = None
|
|
443
445
|
# we start with an empty per bench-type/setup-name
|
|
444
446
|
if not reuse_mixed or "env" not in setup_details:
|
|
445
447
|
logging.info(
|
|
@@ -598,7 +600,7 @@ def run_remote_command_logic(args, project_name, project_version):
|
|
|
598
600
|
"Starting common steps to cluster and standalone..."
|
|
599
601
|
)
|
|
600
602
|
full_logfiles = []
|
|
601
|
-
if setup_details
|
|
603
|
+
if setup_details.get("env", None) is None:
|
|
602
604
|
if skip_remote_db_setup is False:
|
|
603
605
|
# ensure /tmp folder is free of benchmark data from previous runs
|
|
604
606
|
remote_tmpdir_prune(
|
|
@@ -1113,7 +1115,7 @@ def run_remote_command_logic(args, project_name, project_version):
|
|
|
1113
1115
|
)
|
|
1114
1116
|
)
|
|
1115
1117
|
|
|
1116
|
-
if setup_details
|
|
1118
|
+
if setup_details.get("env", None) is None:
|
|
1117
1119
|
if (
|
|
1118
1120
|
keep_env_and_topo is False
|
|
1119
1121
|
and skip_remote_db_setup is False
|
redisbench_admin/utils/utils.py
CHANGED
|
@@ -112,6 +112,22 @@ def generate_common_server_args(
|
|
|
112
112
|
]
|
|
113
113
|
)
|
|
114
114
|
|
|
115
|
+
# Add BigRedis configuration if enabled via environment variable
|
|
116
|
+
if os.getenv("BIGREDIS_ENABLED") is not None:
|
|
117
|
+
bigredis_path = os.getenv("BIGREDIS_PATH", "/tmp/bigredis")
|
|
118
|
+
bigredis_use_async = os.getenv("BIGREDIS_USE_ASYNC", "no")
|
|
119
|
+
logging.info(f"BigRedis enabled. Using bigredis-path: {bigredis_path}")
|
|
120
|
+
command.extend(
|
|
121
|
+
[
|
|
122
|
+
"--bigredis-enabled",
|
|
123
|
+
"yes",
|
|
124
|
+
"--bigredis-driver",
|
|
125
|
+
"speedb",
|
|
126
|
+
"--bigredis-use-async",
|
|
127
|
+
bigredis_use_async, # Temporary default no, until async API is added to Speedb Rust crate.
|
|
128
|
+
]
|
|
129
|
+
)
|
|
130
|
+
|
|
115
131
|
return command
|
|
116
132
|
|
|
117
133
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: redisbench-admin
|
|
3
|
-
Version: 0.11.
|
|
3
|
+
Version: 0.11.69
|
|
4
4
|
Summary: Redis benchmark run helper. A wrapper around Redis and Redis Modules benchmark tools ( ftsb_redisearch, memtier_benchmark, redis-benchmark, aibench, etc... ).
|
|
5
5
|
License-File: LICENSE
|
|
6
6
|
Author: filipecosta90
|
|
@@ -95,7 +95,7 @@ redisbench_admin/run_remote/remote_db.py,sha256=dzpofPjWyryOeTT66RfzWF1IMEHtt9a_
|
|
|
95
95
|
redisbench_admin/run_remote/remote_env.py,sha256=Ux_0QT1unNRlKl3cakzjG5Px1uuxOOfBoF_pnalx_T8,4936
|
|
96
96
|
redisbench_admin/run_remote/remote_failures.py,sha256=IOo6DyxarcwwMPCeN4gWB2JrhuC9iBLwq0nCROqr5ak,1567
|
|
97
97
|
redisbench_admin/run_remote/remote_helpers.py,sha256=pUpOU_04WRkOjuvEAxoglXLCz7kJ1T_yc6ZnP787fRQ,13517
|
|
98
|
-
redisbench_admin/run_remote/run_remote.py,sha256=
|
|
98
|
+
redisbench_admin/run_remote/run_remote.py,sha256=OF250e3ds6F7Z9AVGFHRuWUZwetc_ADeXPEbWYaoklY,78619
|
|
99
99
|
redisbench_admin/run_remote/standalone.py,sha256=Dp5JhywPNVQl_VY7J6LC3eqUexTxRfaAotl03mfe-Sc,33054
|
|
100
100
|
redisbench_admin/run_remote/terraform.py,sha256=vV3eWXNwj7vsnFNqUgCir5ueZS4VYopEyzWiTtoSq0Q,4018
|
|
101
101
|
redisbench_admin/utils/__init__.py,sha256=DtBXRp0Q01XgCFmY-1OIePMyyYihVNAjZ1Y8zwqSDN0,101
|
|
@@ -106,12 +106,12 @@ redisbench_admin/utils/redisgraph_benchmark_go.py,sha256=os7EJt6kBxsFJLKkSoANbjM
|
|
|
106
106
|
redisbench_admin/utils/remote.py,sha256=Kjz1VQfy1Y7jQwef26vz5KYhHrUxMHtMXXvgPmTjGy4,45206
|
|
107
107
|
redisbench_admin/utils/results.py,sha256=uKk3uNJ--bSXlUj_HGQ2OaV6MVqmXJVM8xTzFV6EOw4,3267
|
|
108
108
|
redisbench_admin/utils/ssh.py,sha256=QW4AwlocMHJt05QMdN_4f8WeDmxiEwR80ny8VBThq6k,6533
|
|
109
|
-
redisbench_admin/utils/utils.py,sha256=
|
|
109
|
+
redisbench_admin/utils/utils.py,sha256=ob96GLB2yEWwyyl0jwvBGTwf6NUP09g4Ip0Jx6GtDyY,15754
|
|
110
110
|
redisbench_admin/watchdog/__init__.py,sha256=cD7zfXt0VEmy0b7452HvcAxX_9kVj6Vm213yNdUHP20,95
|
|
111
111
|
redisbench_admin/watchdog/args.py,sha256=nKsG1G6ATOZlAMHMtT9u3kXxduKCbejSZ5x8oB_ynZ8,1312
|
|
112
112
|
redisbench_admin/watchdog/watchdog.py,sha256=0wWYge3x_OMxWrzazNhJif2NK4tKsI963HVZqjczRag,6189
|
|
113
|
-
redisbench_admin-0.11.
|
|
114
|
-
redisbench_admin-0.11.
|
|
115
|
-
redisbench_admin-0.11.
|
|
116
|
-
redisbench_admin-0.11.
|
|
117
|
-
redisbench_admin-0.11.
|
|
113
|
+
redisbench_admin-0.11.69.dist-info/METADATA,sha256=jDlFpCQMiX3_UqBmM1uTXRc-AUnPuIkwgMDOY6tfTrQ,5724
|
|
114
|
+
redisbench_admin-0.11.69.dist-info/WHEEL,sha256=3ny-bZhpXrU6vSQ1UPG34FoxZBp3lVcvK0LkgUz6VLk,88
|
|
115
|
+
redisbench_admin-0.11.69.dist-info/entry_points.txt,sha256=UUawXk_AS-PlieKJ1QxPQXGsRLb6OW_F0MtmA1W0KE8,113
|
|
116
|
+
redisbench_admin-0.11.69.dist-info/licenses/LICENSE,sha256=AAMtfs82zOOvmG68vILivm6lxi2rcOlGObmA8jzxQvw,10768
|
|
117
|
+
redisbench_admin-0.11.69.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|