redis-benchmarks-specification 0.2.11__py3-none-any.whl → 0.2.13__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.

Potentially problematic release.


This version of redis-benchmarks-specification might be problematic. Click here for more details.

@@ -126,7 +126,9 @@ def trigger_tests_dockerhub_cli_command_logic(args, project_name, project_versio
126
126
 
127
127
  if result is True:
128
128
  # Use architecture-specific stream
129
- arch_specific_stream = get_arch_specific_stream_name(args.arch)
129
+ # Provide default arch if None (defensive programming for tests)
130
+ arch = args.arch if args.arch is not None else "amd64"
131
+ arch_specific_stream = get_arch_specific_stream_name(arch)
130
132
  logging.info(
131
133
  f"CLI adding work to architecture-specific stream: {arch_specific_stream}"
132
134
  )
@@ -218,7 +220,7 @@ def get_commits_by_tags(args, repo):
218
220
  version.Version(tag.name)
219
221
  match_obj = re.search(tags_regex_string, tag.name)
220
222
  if match_obj is None:
221
- logging.info(
223
+ logging.debug(
222
224
  "Skipping {} given it does not match regex {}".format(
223
225
  tag.name, tags_regexp
224
226
  )
@@ -387,7 +389,7 @@ def trigger_tests_cli_command_logic(args, project_name, project_version):
387
389
  commit_datetime = cdict["commit_datetime"]
388
390
  match_obj = re.search(hash_regexp_string, commit_hash)
389
391
  if match_obj is None:
390
- logging.info(
392
+ logging.debug(
391
393
  "Skipping {} given it does not match regex {}".format(
392
394
  commit_hash, hash_regexp_string
393
395
  )
@@ -136,6 +136,13 @@ def extract_results_table(
136
136
  # Always use context path for precision_summary metrics to show actual precision levels
137
137
  if "precision_summary" in metric_jsonpath and "*" in metric_jsonpath:
138
138
  use_metric_context_path = True
139
+
140
+ # Debug logging for JSON path resolution
141
+ if "ALL STATS" in metric_jsonpath or "ALL_STATS" in metric_jsonpath:
142
+ logging.info(f"DEBUG: Found {len(find_res)} results for JSONPath '{metric_jsonpath}'")
143
+ for i, result in enumerate(find_res):
144
+ logging.info(f" Result {i}: path='{result.path}', value={result.value}, context='{result.context.path}'")
145
+
139
146
  for metric in find_res:
140
147
  metric_name = str(metric.path)
141
148
  metric_value = float(metric.value)
@@ -200,6 +207,13 @@ def extract_results_table(
200
207
  logging.warning(
201
208
  "Unable to find metric path {} in result dict".format(jsonpath)
202
209
  )
210
+ # Debug logging for missing metrics - show available keys
211
+ if "ALL STATS" in str(jsonpath) or "ALL_STATS" in str(jsonpath):
212
+ logging.info(f"DEBUG: Available top-level keys in results_dict: {list(results_dict.keys())}")
213
+ if "ALL STATS" in results_dict:
214
+ logging.info(f"DEBUG: Keys in 'ALL STATS': {list(results_dict['ALL STATS'].keys())}")
215
+ if "ALL_STATS" in results_dict:
216
+ logging.info(f"DEBUG: Keys in 'ALL_STATS': {list(results_dict['ALL_STATS'].keys())}")
203
217
  return results_matrix
204
218
 
205
219
 
@@ -407,6 +421,11 @@ def common_timeseries_extraction(
407
421
  test_case_targets_dict = cleaned_metric[4]
408
422
  use_metric_context_path = cleaned_metric[5]
409
423
 
424
+ # Debug logging for metric extraction
425
+ logging.info(f"Extracted metric - JSONPath: '{metric_jsonpath}', Name: '{metric_name}', Value: {metric_value}")
426
+ if "ALL_STATS.Totals.Ops/sec" in metric_name or "ALL STATS" in metric_jsonpath:
427
+ logging.warning(f"DEBUG ALL_STATS metric - JSONPath: '{metric_jsonpath}', Name: '{metric_name}', Value: {metric_value}, Context: '{metric_context_path}')")
428
+
410
429
  target_table_keyname, target_table_dict = from_metric_kv_to_timeserie(
411
430
  break_by_key,
412
431
  break_by_str,
@@ -2449,21 +2449,6 @@ def process_self_contained_coordinator_stream(
2449
2449
  )
2450
2450
  arbitrary_command = False
2451
2451
 
2452
- if (
2453
- arbitrary_command
2454
- and oss_cluster_api_enabled
2455
- and "memtier" in benchmark_tool
2456
- ):
2457
- logging.warning(
2458
- "Forcing skip this test given there is an arbitrary commmand and memtier usage. Check https://github.com/RedisLabs/memtier_benchmark/pull/117 ."
2459
- )
2460
- delete_temporary_files(
2461
- temporary_dir_client=temporary_dir_client,
2462
- full_result_path=None,
2463
- benchmark_tool_global=benchmark_tool_global,
2464
- )
2465
- continue
2466
-
2467
2452
  # Check if we have multiple client configurations
2468
2453
  client_configs = extract_client_configs(benchmark_config)
2469
2454
  is_multiple_clients = len(client_configs) > 1
@@ -3648,12 +3633,6 @@ def data_prepopulation_step(
3648
3633
  1,
3649
3634
  unix_socket,
3650
3635
  )
3651
- if arbitrary_command is True and oss_cluster_api_enabled:
3652
- logging.warning(
3653
- "Skipping this test given it implies arbitrary command on an cluster setup. Not supported on memtier: https://github.com/RedisLabs/memtier_benchmark/pull/117"
3654
- )
3655
- result = False
3656
- return result
3657
3636
 
3658
3637
  # run the benchmark
3659
3638
  preload_start_time = datetime.datetime.now()
@@ -2288,7 +2288,7 @@ def filter_test_files(
2288
2288
 
2289
2289
  match_obj = re.search(tags_regex_string, test_file)
2290
2290
  if match_obj is None:
2291
- logging.info(
2291
+ logging.debug(
2292
2292
  "Skipping {} given it does not match regex {}".format(
2293
2293
  test_file, tests_regexp
2294
2294
  )
@@ -137,7 +137,7 @@ def cli_command_logic(args, project_name, project_version):
137
137
  version.Version(tag.name)
138
138
  match_obj = re.search(tags_regex_string, tag.name)
139
139
  if match_obj is None:
140
- logging.info(
140
+ logging.debug(
141
141
  "Skipping {} given it does not match regex {}".format(
142
142
  tag.name, tags_regexp
143
143
  )
@@ -190,7 +190,7 @@ def cli_command_logic(args, project_name, project_version):
190
190
  commit_summary = cdict["commit_summary"]
191
191
  match_obj = re.search(hash_regexp_string, commit_hash)
192
192
  if match_obj is None:
193
- logging.info(
193
+ logging.debug(
194
194
  "Skipping {} given it does not match regex {}".format(
195
195
  commit_hash, hash_regexp_string
196
196
  )
@@ -25,6 +25,9 @@ tested-groups:
25
25
  - string
26
26
  redis-topologies:
27
27
  - oss-standalone
28
+ - oss-standalone-08-io-threads
29
+ - oss-standalone-04-io-threads
30
+ - oss-standalone-02-io-threads
28
31
  build-variants:
29
32
  - gcc:15.2.0-amd64-debian-bookworm-default
30
33
  - gcc:15.2.0-arm64-debian-bookworm-default
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: redis-benchmarks-specification
3
- Version: 0.2.11
3
+ Version: 0.2.13
4
4
  Summary: The Redis benchmarks specification describes the cross-language/tools requirements and expectations to foster performance and observability standards around redis related technologies. Members from both industry and academia, including organizations and individuals are encouraged to contribute.
5
5
  Author: filipecosta90
6
6
  Author-email: filipecosta.90@gmail.com
@@ -8,7 +8,7 @@ redis_benchmarks_specification/__builder__/builder.py,sha256=vG6Cp0SAAgvZt9zyjTQ
8
8
  redis_benchmarks_specification/__builder__/schema.py,sha256=1wcmyVJBcWrBvK58pghN9NCoWLCO3BzPsmdKWYfkVog,584
9
9
  redis_benchmarks_specification/__cli__/__init__.py,sha256=l-G1z-t6twUgi8QLueqoTQLvJmv3hJoEYskGm6H7L6M,83
10
10
  redis_benchmarks_specification/__cli__/args.py,sha256=y_FHtkjhRKsU532sutlXPeXgtFZu7KGOp7lTSi1C5uc,7427
11
- redis_benchmarks_specification/__cli__/cli.py,sha256=0S3Lwci-oxpPJMekPIFeG5XJiSF53rpa5sRnS-aAZnA,22416
11
+ redis_benchmarks_specification/__cli__/cli.py,sha256=pBVWbRd1XkSB2SuGo2TEOSjqc6ycd5jpNtIUZoQAaiM,22549
12
12
  redis_benchmarks_specification/__cli__/stats.py,sha256=r9JIfwGCSR3maozYbDZfZrkthNFQSs0xIymS86yZ6Iw,55574
13
13
  redis_benchmarks_specification/__common__/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
14
  redis_benchmarks_specification/__common__/builder_schema.py,sha256=kfDpRIk7NkJrb5qj9jzsBhLVNO7K_W2Clumj4pxrkG8,5938
@@ -18,7 +18,7 @@ redis_benchmarks_specification/__common__/package.py,sha256=4uVt1BAZ999LV2rZkq--
18
18
  redis_benchmarks_specification/__common__/runner.py,sha256=TKMUFJ3nLSfmSU7P_ok9oM5-pI4L4tFxsWLUWaUHhbI,16733
19
19
  redis_benchmarks_specification/__common__/spec.py,sha256=D_SN48wg6NMthW_-OS1H5bydSDiuZpfd4WPPj7Vfwmc,5760
20
20
  redis_benchmarks_specification/__common__/suppress_warnings.py,sha256=xpOjJ_piGYWlGq9ITr-ZwSCl2GpreA9juZIBao4fDRs,691
21
- redis_benchmarks_specification/__common__/timeseries.py,sha256=kHpkpNwZgWpjCh_Fg0wFcxNRMTb5SoSNwd_UHUCNVhc,54283
21
+ redis_benchmarks_specification/__common__/timeseries.py,sha256=EzNTts2aUS_GoEGaMcl1wpKkFWQ1txseHUfuNGSaSqU,55739
22
22
  redis_benchmarks_specification/__compare__/__init__.py,sha256=DtBXRp0Q01XgCFmY-1OIePMyyYihVNAjZ1Y8zwqSDN0,101
23
23
  redis_benchmarks_specification/__compare__/args.py,sha256=CNtA7pI9CJDTBJPGL2pNVfis7VDdxLautwRyka7oUCI,8911
24
24
  redis_benchmarks_specification/__compare__/compare.py,sha256=_AbuV3FZxtUZIdq4qq24LNzPNIdtQQaqrk8bUjn9blk,84327
@@ -26,7 +26,7 @@ redis_benchmarks_specification/__init__.py,sha256=YQIEx2sLPPA0JR9OuCuMNMNtm-f_gq
26
26
  redis_benchmarks_specification/__runner__/__init__.py,sha256=l-G1z-t6twUgi8QLueqoTQLvJmv3hJoEYskGm6H7L6M,83
27
27
  redis_benchmarks_specification/__runner__/args.py,sha256=K3VGmBC0-9lSv9H6VDp0N-6FGMWvc_4H0pG_TOXN5u8,11312
28
28
  redis_benchmarks_specification/__runner__/remote_profiling.py,sha256=R7obNQju8mmY9oKkcndjI4aAuxi84OCLhDSqqaYu1SU,18610
29
- redis_benchmarks_specification/__runner__/runner.py,sha256=RUY_O56R9TVtsJGHTQb17Sc-wax3-GlRR7z0_3q_a_c,156583
29
+ redis_benchmarks_specification/__runner__/runner.py,sha256=lWIpjThVeYW1hxR2dl2OSIeAwUXrWVHKHfQqsD9mrF8,155505
30
30
  redis_benchmarks_specification/__self_contained_coordinator__/__init__.py,sha256=l-G1z-t6twUgi8QLueqoTQLvJmv3hJoEYskGm6H7L6M,83
31
31
  redis_benchmarks_specification/__self_contained_coordinator__/args.py,sha256=2nTD4g4V1NjMRjRuDvHaoub5sjcav0GCnxv2HFiXWKc,7329
32
32
  redis_benchmarks_specification/__self_contained_coordinator__/artifacts.py,sha256=OVHqJzDgeSSRfUSiKp1ZTAVv14PvSbk-5yJsAAoUfpw,936
@@ -37,12 +37,12 @@ redis_benchmarks_specification/__self_contained_coordinator__/docker.py,sha256=0
37
37
  redis_benchmarks_specification/__self_contained_coordinator__/post_processing.py,sha256=sVLKNnWdAqYY9DjVdqRC5tDaIrVSaI3Ca7w8-DQ-LRM,776
38
38
  redis_benchmarks_specification/__self_contained_coordinator__/prepopulation.py,sha256=1UeFr2T1ZQBcHCSd4W1ZtaWgXyFPfjLyDi_DgDc1eTA,2957
39
39
  redis_benchmarks_specification/__self_contained_coordinator__/runners.py,sha256=IESJoOgbLJxhwf27f0UIUrOxTLuXQAQkz8-LH0CAhAw,33606
40
- redis_benchmarks_specification/__self_contained_coordinator__/self_contained_coordinator.py,sha256=CY9Ame9I2zwOyOfZTlQst7sxiCI8EWVSOjIGxxpRQIc,113591
40
+ redis_benchmarks_specification/__self_contained_coordinator__/self_contained_coordinator.py,sha256=ytIh4on-sqgqYPS-HpQy6ZJYntgbNacQMJSpue-9Dcg,113592
41
41
  redis_benchmarks_specification/__setups__/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
42
  redis_benchmarks_specification/__setups__/topologies.py,sha256=xQ1IJkcTji_ZjLiJd3vOxZpvbNtBLZw9cPkw5hGJKHU,481
43
43
  redis_benchmarks_specification/__spec__/__init__.py,sha256=l-G1z-t6twUgi8QLueqoTQLvJmv3hJoEYskGm6H7L6M,83
44
44
  redis_benchmarks_specification/__spec__/args.py,sha256=r38u0Lr6ZfpXM8lGibmewYF2ccAjFqmAISeQJt5kvgk,2470
45
- redis_benchmarks_specification/__spec__/cli.py,sha256=Dd1dYuG3wrRTvQc1jDNN2Rn7KeOtWtqeOCa_lxu4S4I,8707
45
+ redis_benchmarks_specification/__spec__/cli.py,sha256=OXfEf9Nj1vPwOFTautnUMBFzTMB8eJ5AlkTuwucTODE,8709
46
46
  redis_benchmarks_specification/__watchdog__/__init__.py,sha256=l-G1z-t6twUgi8QLueqoTQLvJmv3hJoEYskGm6H7L6M,83
47
47
  redis_benchmarks_specification/__watchdog__/args.py,sha256=azW3WkS9uqQJthtZt7TPG39LG-6hxcqiV21bK-Dpyx8,1713
48
48
  redis_benchmarks_specification/__watchdog__/watchdog.py,sha256=MASAPSusxEOWCf_iVW4xIwwgFm_snLHJaI2XRiMlZhs,5832
@@ -163,7 +163,7 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed
163
163
  redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-with-expiration-240B-400_conns.yml,sha256=1YIVXSLRytR9-QIayu6jCxnFd1KJlY8o0rwJYT28Hx8,1549
164
164
  redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-set-with-ex-100B-pipeline-10.yml,sha256=5C2S9LpQDH-_IpjWwYH9tCnK0jvm9pZdlnyGmJMA9gc,1300
165
165
  redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setex-100B-pipeline-10.yml,sha256=NE5oujnTwuHINrlvHBjMEFSKY_iwKimAvq4twnYfmXI,1297
166
- redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setget200c-1KiB-pipeline-10.yml,sha256=VWLwsiTixI1WQEF1KJqPvqL0uTUUHOsi8wZ7GONn4HI,1275
166
+ redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setget200c-1KiB-pipeline-10.yml,sha256=TjgswuCZaZrPXdzBUf79pbcMZRSMV3iWoK53mT4fIK0,1368
167
167
  redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setrange-100B-pipeline-10.yml,sha256=h6haEl469vZSnp9LTB3wds12EwGfyNSEm1iqXxh72s8,1329
168
168
  redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setrange-100B.yml,sha256=Wg8joxF6TuCOyQbC4CpW8LTx49PpIAKvNhtwqJpX95k,1303
169
169
  redis_benchmarks_specification/test-suites/memtier_benchmark-1key-100M-bits-bitmap-bitcount.yml,sha256=I4fNkW8P-tVpkkfep8gcPeQ6BgPlZnG4EAytvtxU1hU,1498
@@ -287,8 +287,8 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-session-st
287
287
  redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-session-storage-1k-sessions.yml,sha256=2egtIxPxCze2jlbAfgsk4v9JSQHNMoPLbDWFEW8olDg,7006
288
288
  redis_benchmarks_specification/test-suites/template.txt,sha256=ezqGiRPOvuSDO0iG7GEf-AGXNfHbgXI89_G0RUEzL88,481
289
289
  redis_benchmarks_specification/vector-search-test-suites/vector_db_benchmark_test.yml,sha256=PD7ow-k4Ll2BkhEC3aIqiaCZt8Hc4aJIp96Lw3J3mcI,791
290
- redis_benchmarks_specification-0.2.11.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
291
- redis_benchmarks_specification-0.2.11.dist-info/METADATA,sha256=jMZfRmAt0i8Xr2p-hbc5BOBe6j3-cMm5mc4Iwativdk,22767
292
- redis_benchmarks_specification-0.2.11.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
293
- redis_benchmarks_specification-0.2.11.dist-info/entry_points.txt,sha256=x5WBXCZsnDRTZxV7SBGmC65L2k-ygdDOxV8vuKN00Nk,715
294
- redis_benchmarks_specification-0.2.11.dist-info/RECORD,,
290
+ redis_benchmarks_specification-0.2.13.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
291
+ redis_benchmarks_specification-0.2.13.dist-info/METADATA,sha256=npGnMfaOzPT5ytPzB9Akd24a-wsZmU9DffaEq_dvUDY,22767
292
+ redis_benchmarks_specification-0.2.13.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
293
+ redis_benchmarks_specification-0.2.13.dist-info/entry_points.txt,sha256=x5WBXCZsnDRTZxV7SBGmC65L2k-ygdDOxV8vuKN00Nk,715
294
+ redis_benchmarks_specification-0.2.13.dist-info/RECORD,,