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

@@ -1494,8 +1494,12 @@ def process_self_contained_coordinator_stream(
1494
1494
 
1495
1495
  redis_pids = []
1496
1496
  for conn in redis_conns:
1497
- redis_pid = conn.info()["process_id"]
1498
- redis_pids.append(redis_pid)
1497
+ redis_info = conn.info()
1498
+ redis_pid = redis_info.get("process_id")
1499
+ if redis_pid is not None:
1500
+ redis_pids.append(redis_pid)
1501
+ else:
1502
+ logging.warning("Redis process_id not found in INFO command, skipping PID collection for this connection")
1499
1503
 
1500
1504
  # Check if all tested commands are supported by this Redis instance
1501
1505
  supported_commands = get_supported_redis_commands(redis_conns)
@@ -310,8 +310,12 @@ def process_self_contained_coordinator_stream(
310
310
  r = redis.StrictRedis(port=redis_proc_start_port)
311
311
  r.ping()
312
312
  redis_pids = []
313
- first_redis_pid = r.info()["process_id"]
314
- redis_pids.append(first_redis_pid)
313
+ redis_info = r.info()
314
+ first_redis_pid = redis_info.get("process_id")
315
+ if first_redis_pid is not None:
316
+ redis_pids.append(first_redis_pid)
317
+ else:
318
+ logging.warning("Redis process_id not found in INFO command")
315
319
  ceil_client_cpu_limit = extract_client_cpu_limit(
316
320
  benchmark_config
317
321
  )
@@ -882,7 +882,10 @@ def process_self_contained_coordinator_stream(
882
882
  reset_commandstats(redis_conns)
883
883
  redis_pids = []
884
884
  redis_info = r.info()
885
- first_redis_pid = redis_info["process_id"]
885
+ first_redis_pid = redis_info.get("process_id")
886
+ if first_redis_pid is None:
887
+ logging.warning("Redis process_id not found in INFO command")
888
+ first_redis_pid = "unknown"
886
889
  if git_hash is None and "redis_git_sha1" in redis_info:
887
890
  git_hash = redis_info["redis_git_sha1"]
888
891
  if (
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: redis-benchmarks-specification
3
- Version: 0.1.304
3
+ Version: 0.1.305
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=FTb0gRVUraTyHIRXF16uqks2208uixbRNrPRu5i2N9I,139034
28
+ redis_benchmarks_specification/__runner__/runner.py,sha256=gngEouspZ2KE9ZeDwBm7y1ge4ANaqgYVeW1rHHBw0tw,139305
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
@@ -35,8 +35,8 @@ redis_benchmarks_specification/__self_contained_coordinator__/cpuset.py,sha256=s
35
35
  redis_benchmarks_specification/__self_contained_coordinator__/docker.py,sha256=Alf9Y1dfuOMoD4u_Dv3jTodkwZfSrlo2_YceevaWNFo,2757
36
36
  redis_benchmarks_specification/__self_contained_coordinator__/post_processing.py,sha256=sVLKNnWdAqYY9DjVdqRC5tDaIrVSaI3Ca7w8-DQ-LRM,776
37
37
  redis_benchmarks_specification/__self_contained_coordinator__/prepopulation.py,sha256=qB1rwqkROfuyFotB7MfUQiYS4Gzafd8dd2ca7lT4l2I,2909
38
- redis_benchmarks_specification/__self_contained_coordinator__/runners.py,sha256=12VOteGiJZ_oc4CKyEWfKKSlWmZIDquGfUD57MffPuM,29396
39
- redis_benchmarks_specification/__self_contained_coordinator__/self_contained_coordinator.py,sha256=EQUdd1pWQay2UfAzVe08YzHBWmJNadthaFL4pD4c03A,78774
38
+ redis_benchmarks_specification/__self_contained_coordinator__/runners.py,sha256=mEEekNdzqHsR9qA8P-SOxein3x3LJDE-TGXiF-bI8oU,29644
39
+ redis_benchmarks_specification/__self_contained_coordinator__/self_contained_coordinator.py,sha256=rK6MWqJQocaQffCUfpE50wDv1_iSJ6sRl74-JBSLYFM,79000
40
40
  redis_benchmarks_specification/__setups__/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
41
  redis_benchmarks_specification/__setups__/topologies.py,sha256=xQ1IJkcTji_ZjLiJd3vOxZpvbNtBLZw9cPkw5hGJKHU,481
42
42
  redis_benchmarks_specification/__spec__/__init__.py,sha256=l-G1z-t6twUgi8QLueqoTQLvJmv3hJoEYskGm6H7L6M,83
@@ -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.304.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
278
- redis_benchmarks_specification-0.1.304.dist-info/METADATA,sha256=_lDSq521a9M9-mqVEfZJDbTQyEXpYtXbwjWsshtttng,22726
279
- redis_benchmarks_specification-0.1.304.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
280
- redis_benchmarks_specification-0.1.304.dist-info/entry_points.txt,sha256=x5WBXCZsnDRTZxV7SBGmC65L2k-ygdDOxV8vuKN00Nk,715
281
- redis_benchmarks_specification-0.1.304.dist-info/RECORD,,
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,,