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

@@ -3014,6 +3014,11 @@ def get_supported_redis_commands(redis_conns):
3014
3014
  f"Retrieved {len(supported_commands)} supported Redis commands"
3015
3015
  )
3016
3016
 
3017
+ # Handle case where COMMAND returns 0 commands (likely not supported)
3018
+ if len(supported_commands) == 0:
3019
+ logging.warning("COMMAND returned 0 commands - likely not supported by this Redis instance")
3020
+ return None
3021
+
3017
3022
  # Log some sample commands for debugging
3018
3023
  if supported_commands:
3019
3024
  sample_commands = sorted(list(supported_commands))[:10]
@@ -3036,8 +3041,8 @@ def get_supported_redis_commands(redis_conns):
3036
3041
 
3037
3042
  def check_test_command_support(benchmark_config, supported_commands):
3038
3043
  """Check if all tested-commands in the benchmark config are supported"""
3039
- if supported_commands is None:
3040
- logging.warning("No supported commands list available, skipping command check")
3044
+ if supported_commands is None or len(supported_commands) == 0:
3045
+ logging.warning("No supported commands list available (COMMAND not supported or returned 0 commands), skipping command check")
3041
3046
  return True, []
3042
3047
 
3043
3048
  if "tested-commands" not in benchmark_config:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: redis-benchmarks-specification
3
- Version: 0.1.305
3
+ Version: 0.1.306
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
@@ -25,7 +25,7 @@ redis_benchmarks_specification/__init__.py,sha256=YQIEx2sLPPA0JR9OuCuMNMNtm-f_gq
25
25
  redis_benchmarks_specification/__runner__/__init__.py,sha256=l-G1z-t6twUgi8QLueqoTQLvJmv3hJoEYskGm6H7L6M,83
26
26
  redis_benchmarks_specification/__runner__/args.py,sha256=YeN7-eOGoqCHKh5FrKz9z5Ee-Rh-3DF9tm2Hb-3m7sQ,10648
27
27
  redis_benchmarks_specification/__runner__/remote_profiling.py,sha256=JS46mFxnRB2HSU_HO90WE4w7P7usHzX1dwZg1bJpTMc,18588
28
- redis_benchmarks_specification/__runner__/runner.py,sha256=gngEouspZ2KE9ZeDwBm7y1ge4ANaqgYVeW1rHHBw0tw,139305
28
+ redis_benchmarks_specification/__runner__/runner.py,sha256=96v6WV1XLtAYd-5d04JYMgUIP4psBPJuniVuOOTXW7s,139649
29
29
  redis_benchmarks_specification/__self_contained_coordinator__/__init__.py,sha256=l-G1z-t6twUgi8QLueqoTQLvJmv3hJoEYskGm6H7L6M,83
30
30
  redis_benchmarks_specification/__self_contained_coordinator__/args.py,sha256=uxBjdQ78klvsVi6lOfGYQVaWIxc8OI-DwYKY16SgvCY,5952
31
31
  redis_benchmarks_specification/__self_contained_coordinator__/artifacts.py,sha256=OVHqJzDgeSSRfUSiKp1ZTAVv14PvSbk-5yJsAAoUfpw,936
@@ -274,8 +274,8 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-server-time-
274
274
  redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-session-storage.yml,sha256=Q5JKvADD1R71hyRx4Qsz5dxHHlYICHqWHD7XTAmX72M,6936
275
275
  redis_benchmarks_specification/test-suites/template.txt,sha256=d_edIE7Sxa5X7I2yG-Io0bPdbDIHR0oWFoCA3XUt_EU,435
276
276
  redis_benchmarks_specification/vector-search-test-suites/vector_db_benchmark_test.yml,sha256=PD7ow-k4Ll2BkhEC3aIqiaCZt8Hc4aJIp96Lw3J3mcI,791
277
- redis_benchmarks_specification-0.1.305.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
278
- redis_benchmarks_specification-0.1.305.dist-info/METADATA,sha256=J8M59TdK6P_wSg3zfrl25lMuxrnOYjzFF8WHqMyd8BU,22726
279
- redis_benchmarks_specification-0.1.305.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
280
- redis_benchmarks_specification-0.1.305.dist-info/entry_points.txt,sha256=x5WBXCZsnDRTZxV7SBGmC65L2k-ygdDOxV8vuKN00Nk,715
281
- redis_benchmarks_specification-0.1.305.dist-info/RECORD,,
277
+ redis_benchmarks_specification-0.1.306.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
278
+ redis_benchmarks_specification-0.1.306.dist-info/METADATA,sha256=YXGMeLns9PKM1pTM2AQu_jE5ccwTGApGBMr4Ss-OPJQ,22726
279
+ redis_benchmarks_specification-0.1.306.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
280
+ redis_benchmarks_specification-0.1.306.dist-info/entry_points.txt,sha256=x5WBXCZsnDRTZxV7SBGmC65L2k-ygdDOxV8vuKN00Nk,715
281
+ redis_benchmarks_specification-0.1.306.dist-info/RECORD,,