redis-benchmarks-specification 0.2.26__py3-none-any.whl → 0.2.28__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.
- redis_benchmarks_specification/__runner__/runner.py +28 -3
- redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-10B-psetex-expire-use-case.yml +1 -1
- redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-10B-setex-expire-use-case.yml +1 -1
- redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B-expire-pipeline-10.yml +1 -1
- redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B-expire.yml +1 -1
- redis_benchmarks_specification/test-suites/memtier_benchmark-stream-10M-entries-xread-count-100.yml +36 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-stream-10M-entries-xreadgroup-count-100-noack.yml +38 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-stream-10M-entries-xreadgroup-count-100.yml +38 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-stream-concurrent-xadd-xreadgroup-70-30.yml +50 -0
- {redis_benchmarks_specification-0.2.26.dist-info → redis_benchmarks_specification-0.2.28.dist-info}/METADATA +1 -1
- {redis_benchmarks_specification-0.2.26.dist-info → redis_benchmarks_specification-0.2.28.dist-info}/RECORD +14 -10
- {redis_benchmarks_specification-0.2.26.dist-info → redis_benchmarks_specification-0.2.28.dist-info}/WHEEL +0 -0
- {redis_benchmarks_specification-0.2.26.dist-info → redis_benchmarks_specification-0.2.28.dist-info}/entry_points.txt +0 -0
- {redis_benchmarks_specification-0.2.26.dist-info → redis_benchmarks_specification-0.2.28.dist-info}/licenses/LICENSE +0 -0
|
@@ -1686,7 +1686,7 @@ def process_self_contained_coordinator_stream(
|
|
|
1686
1686
|
logging.info(
|
|
1687
1687
|
f"Connected to Redis using individual parameters: {host}:{port}"
|
|
1688
1688
|
)
|
|
1689
|
-
setup_name =
|
|
1689
|
+
setup_name = topology_spec_name
|
|
1690
1690
|
r.ping()
|
|
1691
1691
|
|
|
1692
1692
|
# Auto-detect server information if not explicitly provided
|
|
@@ -2440,7 +2440,7 @@ def process_self_contained_coordinator_stream(
|
|
|
2440
2440
|
start_time_str,
|
|
2441
2441
|
git_hash,
|
|
2442
2442
|
test_name,
|
|
2443
|
-
|
|
2443
|
+
setup_name,
|
|
2444
2444
|
)
|
|
2445
2445
|
logging.info(
|
|
2446
2446
|
"Will store benchmark json output to local file {}".format(
|
|
@@ -2671,6 +2671,14 @@ def process_self_contained_coordinator_stream(
|
|
|
2671
2671
|
|
|
2672
2672
|
if not success:
|
|
2673
2673
|
logging.error(f"Memtier benchmark failed: {stderr}")
|
|
2674
|
+
# Clean up database after failure (timeout or error)
|
|
2675
|
+
if args.flushall_on_every_test_end or args.flushall_on_every_test_start:
|
|
2676
|
+
logging.warning("Benchmark failed - cleaning up database with FLUSHALL")
|
|
2677
|
+
try:
|
|
2678
|
+
for r in redis_conns:
|
|
2679
|
+
r.flushall()
|
|
2680
|
+
except Exception as e:
|
|
2681
|
+
logging.error(f"FLUSHALL failed after benchmark failure: {e}")
|
|
2674
2682
|
# Continue with the test but log the failure
|
|
2675
2683
|
client_container_stdout = f"ERROR: {stderr}"
|
|
2676
2684
|
|
|
@@ -2872,6 +2880,7 @@ def process_self_contained_coordinator_stream(
|
|
|
2872
2880
|
test_name,
|
|
2873
2881
|
results_matrix,
|
|
2874
2882
|
redis_conns,
|
|
2883
|
+
setup_name,
|
|
2875
2884
|
)
|
|
2876
2885
|
else:
|
|
2877
2886
|
# Single client - read from file as usual
|
|
@@ -2950,6 +2959,7 @@ def process_self_contained_coordinator_stream(
|
|
|
2950
2959
|
test_name,
|
|
2951
2960
|
results_matrix,
|
|
2952
2961
|
redis_conns,
|
|
2962
|
+
setup_name,
|
|
2953
2963
|
)
|
|
2954
2964
|
|
|
2955
2965
|
dataset_load_duration_seconds = 0
|
|
@@ -3014,6 +3024,15 @@ def process_self_contained_coordinator_stream(
|
|
|
3014
3024
|
print("-" * 60)
|
|
3015
3025
|
test_result = False
|
|
3016
3026
|
|
|
3027
|
+
# Clean up database after exception to prevent contamination of next test
|
|
3028
|
+
if args.flushall_on_every_test_end or args.flushall_on_every_test_start:
|
|
3029
|
+
logging.warning("Exception caught - cleaning up database with FLUSHALL")
|
|
3030
|
+
try:
|
|
3031
|
+
for r in redis_conns:
|
|
3032
|
+
r.flushall()
|
|
3033
|
+
except Exception as e:
|
|
3034
|
+
logging.error(f"FLUSHALL failed after exception: {e}")
|
|
3035
|
+
|
|
3017
3036
|
# Check if user requested exit via Ctrl+C
|
|
3018
3037
|
if _exit_requested:
|
|
3019
3038
|
logging.info(
|
|
@@ -3525,6 +3544,7 @@ def prepare_overall_total_test_results(
|
|
|
3525
3544
|
test_name,
|
|
3526
3545
|
overall_results_matrix,
|
|
3527
3546
|
redis_conns=None,
|
|
3547
|
+
topology=None,
|
|
3528
3548
|
):
|
|
3529
3549
|
# check which metrics to extract
|
|
3530
3550
|
(
|
|
@@ -3560,8 +3580,13 @@ def prepare_overall_total_test_results(
|
|
|
3560
3580
|
|
|
3561
3581
|
return x[0] # Use original path
|
|
3562
3582
|
|
|
3583
|
+
# Include topology in the test name if provided
|
|
3584
|
+
test_name_with_topology = test_name
|
|
3585
|
+
if topology:
|
|
3586
|
+
test_name_with_topology = f"{topology}-{test_name}"
|
|
3587
|
+
|
|
3563
3588
|
current_test_results_matrix = [
|
|
3564
|
-
[
|
|
3589
|
+
[test_name_with_topology, get_overall_display_name(x), f"{x[3]:.3f}"]
|
|
3565
3590
|
for x in current_test_results_matrix
|
|
3566
3591
|
]
|
|
3567
3592
|
overall_results_matrix.extend(current_test_results_matrix)
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-10B-psetex-expire-use-case.yml
CHANGED
|
@@ -12,7 +12,7 @@ dbconfig:
|
|
|
12
12
|
run_image: redislabs/memtier_benchmark:edge
|
|
13
13
|
tool: memtier_benchmark
|
|
14
14
|
arguments: '"--data-size" "10" --ratio 1:0 "--key-pattern"
|
|
15
|
-
"P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1" "--key-maximum"
|
|
15
|
+
"P:P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1" "--key-maximum"
|
|
16
16
|
"1000000" "-n" "allkeys"'
|
|
17
17
|
resources:
|
|
18
18
|
requests:
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-10B-setex-expire-use-case.yml
CHANGED
|
@@ -12,7 +12,7 @@ dbconfig:
|
|
|
12
12
|
run_image: redislabs/memtier_benchmark:edge
|
|
13
13
|
tool: memtier_benchmark
|
|
14
14
|
arguments: '"--data-size" "10" --ratio 1:0 "--key-pattern"
|
|
15
|
-
"P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1" "--key-maximum"
|
|
15
|
+
"P:P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1" "--key-maximum"
|
|
16
16
|
"1000000" "-n" "allkeys"'
|
|
17
17
|
resources:
|
|
18
18
|
requests:
|
|
@@ -36,7 +36,7 @@ clientconfig:
|
|
|
36
36
|
run_image: redislabs/memtier_benchmark:edge
|
|
37
37
|
tool: memtier_benchmark
|
|
38
38
|
arguments: '"--data-size" "100" --distinct-client-seed --command "SET __key__ __data__
|
|
39
|
-
EX 10" --command "GET __key__" --key-pattern R
|
|
39
|
+
EX 10" --command "GET __key__" --command-key-pattern R --key-minimum=1 --key-maximum
|
|
40
40
|
1000000 --test-time 180 -c 25 -t 4 --hide-histogram --pipeline 10'
|
|
41
41
|
resources:
|
|
42
42
|
requests:
|
|
@@ -36,7 +36,7 @@ clientconfig:
|
|
|
36
36
|
run_image: redislabs/memtier_benchmark:edge
|
|
37
37
|
tool: memtier_benchmark
|
|
38
38
|
arguments: '"--data-size" "100" --distinct-client-seed --command "SET __key__ __data__
|
|
39
|
-
EX 10" --command "GET __key__" --key-pattern R
|
|
39
|
+
EX 10" --command "GET __key__" --command-key-pattern R --key-minimum=1 --key-maximum
|
|
40
40
|
1000000 --test-time 180 -c 25 -t 4 --hide-histogram'
|
|
41
41
|
resources:
|
|
42
42
|
requests:
|
redis_benchmarks_specification/test-suites/memtier_benchmark-stream-10M-entries-xread-count-100.yml
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-stream-10M-entries-xread-count-100
|
|
3
|
+
description: 'Runs memtier_benchmark, pre-loading Redis with 10M stream entries using XADD, then testing XREAD performance with COUNT 100.'
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 1
|
|
9
|
+
preload_tool:
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
arguments: '"--data-size" "100" --command "XADD stream-key * field __data__" --command-key-pattern="P" -n 50000 -c 50 -t 4 --hide-histogram'
|
|
13
|
+
resources:
|
|
14
|
+
requests:
|
|
15
|
+
memory: 4g
|
|
16
|
+
dataset_name: 1M-stream-entries
|
|
17
|
+
dataset_description: This dataset contains 1 stream key with 1M entries, each with a field containing 100 bytes of data.
|
|
18
|
+
tested-commands:
|
|
19
|
+
- xread
|
|
20
|
+
redis-topologies:
|
|
21
|
+
- oss-standalone
|
|
22
|
+
build-variants:
|
|
23
|
+
- gcc:15.2.0-amd64-debian-bookworm-default
|
|
24
|
+
- gcc:15.2.0-arm64-debian-bookworm-default
|
|
25
|
+
- dockerhub
|
|
26
|
+
clientconfig:
|
|
27
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
28
|
+
tool: memtier_benchmark
|
|
29
|
+
arguments: --command="XREAD COUNT 100 STREAMS stream-key 0" --hide-histogram -n 1000 -c 25 -t 4
|
|
30
|
+
resources:
|
|
31
|
+
requests:
|
|
32
|
+
cpus: '4'
|
|
33
|
+
memory: 2g
|
|
34
|
+
tested-groups:
|
|
35
|
+
- stream
|
|
36
|
+
priority: 95
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-stream-10M-entries-xreadgroup-count-100-noack
|
|
3
|
+
description: "Runs memtier_benchmark, pre-loading Redis with 10M stream entries using XADD, creating a consumer group, then testing XREADGROUP performance with COUNT 100 and NOACK enabled."
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 1
|
|
9
|
+
preload_tool:
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
arguments: '"--data-size" "100" --command "XADD stream-key * field __data__" --command-key-pattern="P" -n 50000 -c 50 -t 4 --hide-histogram'
|
|
13
|
+
init_commands:
|
|
14
|
+
- XGROUP CREATE stream-key test-group 0 MKSTREAM
|
|
15
|
+
resources:
|
|
16
|
+
requests:
|
|
17
|
+
memory: 4g
|
|
18
|
+
dataset_name: 1k-stream-entries-with-consumer-group
|
|
19
|
+
dataset_description: This dataset contains 1 stream key with 10M entries, each with a field containing 100 bytes of data, and a consumer group named 'test-group'.
|
|
20
|
+
tested-commands:
|
|
21
|
+
- xreadgroup
|
|
22
|
+
redis-topologies:
|
|
23
|
+
- oss-standalone
|
|
24
|
+
build-variants:
|
|
25
|
+
- gcc:15.2.0-amd64-debian-bookworm-default
|
|
26
|
+
- gcc:15.2.0-arm64-debian-bookworm-default
|
|
27
|
+
- dockerhub
|
|
28
|
+
clientconfig:
|
|
29
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
30
|
+
tool: memtier_benchmark
|
|
31
|
+
arguments: --command="XREADGROUP GROUP test-group consumer1 COUNT 100 NOACK STREAMS stream-key >" --hide-histogram -n 1000 -c 25 -t 4
|
|
32
|
+
resources:
|
|
33
|
+
requests:
|
|
34
|
+
cpus: "4"
|
|
35
|
+
memory: 2g
|
|
36
|
+
tested-groups:
|
|
37
|
+
- stream
|
|
38
|
+
priority: 94
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-stream-10M-entries-xreadgroup-count-100
|
|
3
|
+
description: "Runs memtier_benchmark, pre-loading Redis with 10M stream entries using XADD, creating a consumer group, then testing XREADGROUP performance with COUNT 100."
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 1
|
|
9
|
+
preload_tool:
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
arguments: '"--data-size" "100" --command "XADD stream-key * field __data__" --command-key-pattern="P" -n 50000 -c 50 -t 4 --hide-histogram'
|
|
13
|
+
init_commands:
|
|
14
|
+
- XGROUP CREATE stream-key test-group 0 MKSTREAM
|
|
15
|
+
resources:
|
|
16
|
+
requests:
|
|
17
|
+
memory: 4g
|
|
18
|
+
dataset_name: 1k-stream-entries-with-consumer-group
|
|
19
|
+
dataset_description: This dataset contains 1 stream key with 10M entries, each with a field containing 100 bytes of data, and a consumer group named 'test-group'.
|
|
20
|
+
tested-commands:
|
|
21
|
+
- xreadgroup
|
|
22
|
+
redis-topologies:
|
|
23
|
+
- oss-standalone
|
|
24
|
+
build-variants:
|
|
25
|
+
- gcc:15.2.0-amd64-debian-bookworm-default
|
|
26
|
+
- gcc:15.2.0-arm64-debian-bookworm-default
|
|
27
|
+
- dockerhub
|
|
28
|
+
clientconfig:
|
|
29
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
30
|
+
tool: memtier_benchmark
|
|
31
|
+
arguments: --command="XREADGROUP GROUP test-group consumer1 COUNT 100 STREAMS stream-key >" --hide-histogram -n 1000 -c 25 -t 4
|
|
32
|
+
resources:
|
|
33
|
+
requests:
|
|
34
|
+
cpus: "4"
|
|
35
|
+
memory: 2g
|
|
36
|
+
tested-groups:
|
|
37
|
+
- stream
|
|
38
|
+
priority: 94
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-stream-concurrent-xadd-xreadgroup-70-30
|
|
3
|
+
description:
|
|
4
|
+
Starting with a pre-loaded stream of 500K entries, the benchmark tests concurrent stream operations with a consumer group for distributed processing.
|
|
5
|
+
70% of commands produce messages with XADD, while 30% consume with XREADGROUP COUNT 10.
|
|
6
|
+
500K initial entries plus 200K * 70% minus 200K * 10 * (15% + 15%) ≈ 40K left in the stream at the end.
|
|
7
|
+
dbconfig:
|
|
8
|
+
configuration-parameters:
|
|
9
|
+
save: '""'
|
|
10
|
+
check:
|
|
11
|
+
keyspacelen: 1
|
|
12
|
+
preload_tool:
|
|
13
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
14
|
+
tool: memtier_benchmark
|
|
15
|
+
arguments: '"--data-size" "100" --command "XADD stream-key * field __data__" --command-key-pattern="P" -n 2500 -c 50 -t 4 --hide-histogram'
|
|
16
|
+
init_commands:
|
|
17
|
+
- XGROUP CREATE stream-key producer-consumer-group 0 MKSTREAM
|
|
18
|
+
resources:
|
|
19
|
+
requests:
|
|
20
|
+
memory: 4g
|
|
21
|
+
dataset_name: stream-concurrent-producer-consumer-500k-seed
|
|
22
|
+
dataset_description: This dataset starts with 500K pre-loaded stream entries, then tests concurrent stream operations with a consumer group for distributed processing.
|
|
23
|
+
tested-commands:
|
|
24
|
+
- xadd
|
|
25
|
+
- xreadgroup
|
|
26
|
+
redis-topologies:
|
|
27
|
+
- oss-standalone
|
|
28
|
+
build-variants:
|
|
29
|
+
- gcc:15.2.0-amd64-debian-bookworm-default
|
|
30
|
+
- gcc:15.2.0-arm64-debian-bookworm-default
|
|
31
|
+
- dockerhub
|
|
32
|
+
clientconfig:
|
|
33
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
34
|
+
tool: memtier_benchmark
|
|
35
|
+
arguments: >
|
|
36
|
+
--data-size 100
|
|
37
|
+
--command="XADD stream-key * field __data__" --command-key-pattern="P" --command-ratio=70
|
|
38
|
+
--command="XREADGROUP GROUP producer-consumer-group consumer1 COUNT 10 STREAMS stream-key >" --command-key-pattern="P" --command-ratio=15
|
|
39
|
+
--command="XREADGROUP GROUP producer-consumer-group consumer2 COUNT 10 STREAMS stream-key >" --command-key-pattern="P" --command-ratio=15
|
|
40
|
+
--hide-histogram
|
|
41
|
+
-n 1000
|
|
42
|
+
-c 50
|
|
43
|
+
-t 4
|
|
44
|
+
resources:
|
|
45
|
+
requests:
|
|
46
|
+
cpus: "4"
|
|
47
|
+
memory: 2g
|
|
48
|
+
tested-groups:
|
|
49
|
+
- stream
|
|
50
|
+
priority: 95
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: redis-benchmarks-specification
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.28
|
|
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
|
License-File: LICENSE
|
|
6
6
|
Author: filipecosta90
|
|
@@ -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=
|
|
29
|
+
redis_benchmarks_specification/__runner__/runner.py,sha256=Kj2DO9j8_QWKxLELelnkwGgClewBqicfJB58bctBaF8,157171
|
|
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
|
|
@@ -70,8 +70,8 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-10Mkeys-string-get-
|
|
|
70
70
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Kkeys-hash-listpack-500-fields-update-20-fields-with-1B-to-64B-values.yml,sha256=MNvXg-CTghbaGAoHmJZbR8BPL2S67bAkHSyR-KyHsHM,2434
|
|
71
71
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-100B-expire-use-case.yml,sha256=gGYr-olsucZArDZICL8XMfauUoAJMDxEu97KS2VV6YI,1564
|
|
72
72
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-10B-expire-use-case.yml,sha256=z31tWYEtOvsuwgY1ZJTGb5oJ_LRel6LjjtiyahTDayU,1582
|
|
73
|
-
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-10B-psetex-expire-use-case.yml,sha256=
|
|
74
|
-
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-10B-setex-expire-use-case.yml,sha256=
|
|
73
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-10B-psetex-expire-use-case.yml,sha256=LjYun977RbOzi4e4xsxoh3oRrjqmhpRdNyBDMSjOnI0,1359
|
|
74
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-10B-setex-expire-use-case.yml,sha256=JIO1lKdXYsR5g-DT2ZozUIj_mBMZGHk0OfPgzE_c5Cs,1356
|
|
75
75
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-1KiB-expire-use-case.yml,sha256=hRAfJzOYRn6uAxv-w5cfwn5Ls8l12sFCYNP5w7V44tI,1532
|
|
76
76
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-4KiB-expire-use-case.yml,sha256=y1-4DRDeFQ5CXeUhUnMbC66U2gjhEISwXFrQzvDlqF8,1613
|
|
77
77
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-bitmap-getbit-pipeline-10.yml,sha256=MOluzFkre4krpEyxwmW7aX67CXKdSh_OqkIFcJRRsQs,1317
|
|
@@ -150,8 +150,8 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-incrb
|
|
|
150
150
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-incrbyfloat.yml,sha256=XyaE5zSTP62m58jYiwUWEnacj5M6djdfNgTE9zPVnbc,779
|
|
151
151
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-int-encoding-strlen-pipeline-10.yml,sha256=hKQgM8l5Fz5W9YtK2_Kq5-igzO0LtPXFKbL2noKa74E,1300
|
|
152
152
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mget-1KiB.yml,sha256=xlS6A-h97A2Lygi_RZ6kLUeXRnRHEf9DMu5Q_QasLC8,1291
|
|
153
|
-
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B-expire-pipeline-10.yml,sha256=
|
|
154
|
-
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B-expire.yml,sha256=
|
|
153
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B-expire-pipeline-10.yml,sha256=vz7T_ke6jR-ov747inoF8IZ2mu_yk71WNMbQDNZeGjc,1496
|
|
154
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B-expire.yml,sha256=BIF-qclxUMiMjapuzifBbSFh4rJRIXwE_qxdSd8Lt0s,1456
|
|
155
155
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B-pipeline-10.yml,sha256=obSR5C6GrWlkVSxnU8e43Fyg2Ofw7rw36hFCUP164tE,1358
|
|
156
156
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B.yml,sha256=6ZSyHAM9n0-X0tLREASO0PIi16RDkoZGxi5ipHP34So,1312
|
|
157
157
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-1KB-pipeline-10.yml,sha256=xdKBeSww0RjRlbmy8h0PvJIOLuesKw8yIKpPgjZNJpA,1313
|
|
@@ -289,10 +289,14 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-session-ca
|
|
|
289
289
|
redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-session-caching-string-100k-sessions.yml,sha256=yVrHQxMp2xzSpZ5Vx7GCTqhwbjMB-RoBf1T20qz9puE,3909
|
|
290
290
|
redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-session-storage-100k-sessions.yml,sha256=GCNREyvwGlhMDmrvOaRWi1w0GqG9YA-8TRoh1xIa4xw,7012
|
|
291
291
|
redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-session-storage-1k-sessions.yml,sha256=2egtIxPxCze2jlbAfgsk4v9JSQHNMoPLbDWFEW8olDg,7006
|
|
292
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-stream-10M-entries-xread-count-100.yml,sha256=v4yPo_Hv4Ncr-nwx3jGIH-CmeIfxzg27c0sS9_XGeOA,1186
|
|
293
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-stream-10M-entries-xreadgroup-count-100-noack.yml,sha256=DiSV34MdZ6kEkqTj2J9DeLRziWL8AIJAXBOYfOM7oa0,1434
|
|
294
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-stream-10M-entries-xreadgroup-count-100.yml,sha256=_3XUBcGmVAgt6oZsFn3kRXrAuU64qWr-vcTgSWmQW3k,1404
|
|
295
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-stream-concurrent-xadd-xreadgroup-70-30.yml,sha256=M707Z-uJ-xDiNfkcIjtJWZecSRepOQDbTy-CUStsbqM,1964
|
|
292
296
|
redis_benchmarks_specification/test-suites/template.txt,sha256=ezqGiRPOvuSDO0iG7GEf-AGXNfHbgXI89_G0RUEzL88,481
|
|
293
297
|
redis_benchmarks_specification/vector-search-test-suites/vector_db_benchmark_test.yml,sha256=PD7ow-k4Ll2BkhEC3aIqiaCZt8Hc4aJIp96Lw3J3mcI,791
|
|
294
|
-
redis_benchmarks_specification-0.2.
|
|
295
|
-
redis_benchmarks_specification-0.2.
|
|
296
|
-
redis_benchmarks_specification-0.2.
|
|
297
|
-
redis_benchmarks_specification-0.2.
|
|
298
|
-
redis_benchmarks_specification-0.2.
|
|
298
|
+
redis_benchmarks_specification-0.2.28.dist-info/METADATA,sha256=R6XfrHNZbnXH8R-yt2pomtCykYcv_4StwXI1P4MbGcc,22891
|
|
299
|
+
redis_benchmarks_specification-0.2.28.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
300
|
+
redis_benchmarks_specification-0.2.28.dist-info/entry_points.txt,sha256=x5WBXCZsnDRTZxV7SBGmC65L2k-ygdDOxV8vuKN00Nk,715
|
|
301
|
+
redis_benchmarks_specification-0.2.28.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
302
|
+
redis_benchmarks_specification-0.2.28.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|