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

Files changed (19) hide show
  1. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-scan-cursor-count-5000-pipeline-10.yml +34 -0
  2. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-32B-pipeline-10.yml +34 -0
  3. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-32B.yml +34 -0
  4. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B-expire-pipeline-10.yml +36 -0
  5. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B-expire.yml +36 -0
  6. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B-pipeline-10.yml +35 -0
  7. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B.yml +35 -0
  8. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-1KB-pipeline-10.yml +35 -0
  9. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-1KB.yml +35 -0
  10. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-32B-pipeline-10.yml +35 -0
  11. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-32B.yml +35 -0
  12. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-512B-pipeline-10.yml +35 -0
  13. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-512B.yml +35 -0
  14. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-listpack-zrank-100-elements-pipeline-1.yml +32 -0
  15. {redis_benchmarks_specification-0.1.270.dist-info → redis_benchmarks_specification-0.1.272.dist-info}/METADATA +2 -3
  16. {redis_benchmarks_specification-0.1.270.dist-info → redis_benchmarks_specification-0.1.272.dist-info}/RECORD +19 -5
  17. {redis_benchmarks_specification-0.1.270.dist-info → redis_benchmarks_specification-0.1.272.dist-info}/WHEEL +1 -1
  18. {redis_benchmarks_specification-0.1.270.dist-info → redis_benchmarks_specification-0.1.272.dist-info}/LICENSE +0 -0
  19. {redis_benchmarks_specification-0.1.270.dist-info → redis_benchmarks_specification-0.1.272.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,34 @@
1
+ version: 0.4
2
+ name: memtier_benchmark-1Mkeys-generic-scan-cursor-count-5000-pipeline-10
3
+ description: Runs memtier_benchmark, for a keyspace length of 1M keys focusing on SCAN performance with CURSOR and large COUNT.
4
+ dbconfig:
5
+ configuration-parameters:
6
+ save: '""'
7
+ check:
8
+ keyspacelen: 1000000
9
+ preload_tool:
10
+ run_image: redislabs/memtier_benchmark:edge
11
+ tool: memtier_benchmark
12
+ arguments: '"--pipeline" "100" "--data-size" "100" "--command" "HSET __key__ field __data__" "--command-key-pattern" "P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1"'
13
+ resources:
14
+ requests:
15
+ memory: 1g
16
+ tested-commands:
17
+ - scan
18
+ tested-groups:
19
+ - generic
20
+ redis-topologies:
21
+ - oss-standalone
22
+ build-variants:
23
+ - gcc:8.5.0-amd64-debian-buster-default
24
+ - dockerhub
25
+ clientconfig:
26
+ run_image: redislabs/memtier_benchmark:edge
27
+ tool: memtier_benchmark
28
+ arguments: --command "SCAN __key__ COUNT 5000" --key-prefix "" --distinct-client-seed --key-maximum 1000000 --pipeline 10 --command-key-pattern="R" -c 50 -t 2 --hide-histogram --test-time 180
29
+ resources:
30
+ requests:
31
+ cpus: '2'
32
+ memory: 2g
33
+
34
+ priority: 44
@@ -0,0 +1,34 @@
1
+ version: 0.4
2
+ name: memtier_benchmark-1Mkeys-string-get-32B-pipeline-10
3
+ description: Runs memtier_benchmark, for a keyspace length of 1M keys with a data size of 32 Bytes for each key.
4
+ dbconfig:
5
+ configuration-parameters:
6
+ save: '""'
7
+ check:
8
+ keyspacelen: 1000000
9
+ preload_tool:
10
+ run_image: redislabs/memtier_benchmark:edge
11
+ tool: memtier_benchmark
12
+ arguments: '"--data-size" "32" "--ratio" "1:0" "--key-pattern" "P:P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1"'
13
+ resources:
14
+ requests:
15
+ memory: 1g
16
+ tested-commands:
17
+ - get
18
+ redis-topologies:
19
+ - oss-standalone
20
+ build-variants:
21
+ - gcc:8.5.0-amd64-debian-buster-default
22
+ - dockerhub
23
+ clientconfig:
24
+ run_image: redislabs/memtier_benchmark:edge
25
+ tool: memtier_benchmark
26
+ arguments: '--pipeline 10 --data-size 32 --ratio 0:1 --key-pattern R:R -c 25 -t 4 --hide-histogram --test-time 180'
27
+ resources:
28
+ requests:
29
+ cpus: '4'
30
+ memory: 2g
31
+
32
+ tested-groups:
33
+ - string
34
+ priority: 1
@@ -0,0 +1,34 @@
1
+ version: 0.4
2
+ name: memtier_benchmark-1Mkeys-string-get-32B
3
+ description: Runs memtier_benchmark, for a keyspace length of 1M keys with a data size of 32 Bytes for each key.
4
+ dbconfig:
5
+ configuration-parameters:
6
+ save: '""'
7
+ check:
8
+ keyspacelen: 1000000
9
+ preload_tool:
10
+ run_image: redislabs/memtier_benchmark:edge
11
+ tool: memtier_benchmark
12
+ arguments: '"--data-size" "32" "--ratio" "1:0" "--key-pattern" "P:P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1"'
13
+ resources:
14
+ requests:
15
+ memory: 1g
16
+ tested-commands:
17
+ - get
18
+ redis-topologies:
19
+ - oss-standalone
20
+ build-variants:
21
+ - gcc:8.5.0-amd64-debian-buster-default
22
+ - dockerhub
23
+ clientconfig:
24
+ run_image: redislabs/memtier_benchmark:edge
25
+ tool: memtier_benchmark
26
+ arguments: '--data-size 32 --ratio 0:1 --key-pattern R:R -c 25 -t 4 --hide-histogram --test-time 180'
27
+ resources:
28
+ requests:
29
+ cpus: '4'
30
+ memory: 2g
31
+
32
+ tested-groups:
33
+ - string
34
+ priority: 1
@@ -0,0 +1,36 @@
1
+ version: 0.4
2
+ name: memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B-expire-pipeline-10
3
+ description: Runs memtier_benchmark, for a keyspace of 1M keys with 50% SETs and 50% GETs (mixed) with a data size of 100 Bytes, expiration, and pipeline 10 for community/youtuber use-case.
4
+ dbconfig:
5
+ configuration-parameters:
6
+ save: '""'
7
+ check:
8
+ keyspacelen: 1000000
9
+ preload_tool:
10
+ run_image: redislabs/memtier_benchmark:edge
11
+ tool: memtier_benchmark
12
+ arguments: '"--data-size" "100" --command "SET __key__ __data__ EX 10" --command-key-pattern P -c 50 -t 2 --hide-histogram --key-minimum 1 --key-maximum 1000000 -n allkeys'
13
+ resources:
14
+ requests:
15
+ memory: 1g
16
+ tested-commands:
17
+ - setex
18
+ - get
19
+ - set
20
+ tested-groups:
21
+ - string
22
+ redis-topologies:
23
+ - oss-standalone
24
+ build-variants:
25
+ - gcc:8.5.0-amd64-debian-buster-default
26
+ - dockerhub
27
+ clientconfig:
28
+ run_image: redislabs/memtier_benchmark:edge
29
+ tool: memtier_benchmark
30
+ arguments: '"--data-size" "100" --distinct-client-seed --command "SET __key__ __data__ EX 10" --command "GET __key__" --key-pattern R:R --key-minimum=1 --key-maximum 1000000 --test-time 180 -c 25 -t 4 --hide-histogram --pipeline 10'
31
+ resources:
32
+ requests:
33
+ cpus: '4'
34
+ memory: 2g
35
+
36
+ priority: 1
@@ -0,0 +1,36 @@
1
+ version: 0.4
2
+ name: memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B-expire
3
+ description: Runs memtier_benchmark, for a keyspace of 1M keys with 50% SETs and 50% GETs (mixed) with a data size of 100 Bytes and expiration for community/youtuber use-case.
4
+ dbconfig:
5
+ configuration-parameters:
6
+ save: '""'
7
+ check:
8
+ keyspacelen: 1000000
9
+ preload_tool:
10
+ run_image: redislabs/memtier_benchmark:edge
11
+ tool: memtier_benchmark
12
+ arguments: '"--data-size" "100" --command "SET __key__ __data__ EX 10" --command-key-pattern P -c 50 -t 2 --hide-histogram --key-minimum 1 --key-maximum 1000000 -n allkeys'
13
+ resources:
14
+ requests:
15
+ memory: 1g
16
+ tested-commands:
17
+ - setex
18
+ - get
19
+ - set
20
+ tested-groups:
21
+ - string
22
+ redis-topologies:
23
+ - oss-standalone
24
+ build-variants:
25
+ - gcc:8.5.0-amd64-debian-buster-default
26
+ - dockerhub
27
+ clientconfig:
28
+ run_image: redislabs/memtier_benchmark:edge
29
+ tool: memtier_benchmark
30
+ arguments: '"--data-size" "100" --distinct-client-seed --command "SET __key__ __data__ EX 10" --command "GET __key__" --key-pattern R:R --key-minimum=1 --key-maximum 1000000 --test-time 180 -c 25 -t 4 --hide-histogram'
31
+ resources:
32
+ requests:
33
+ cpus: '4'
34
+ memory: 2g
35
+
36
+ priority: 1
@@ -0,0 +1,35 @@
1
+ version: 0.4
2
+ name: memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B-pipeline-10
3
+ description: Runs memtier_benchmark, for a keyspace of 1M keys with 50% SETs and 50% GETs (mixed) with a data size of 100 Bytes and pipeline 10.
4
+ dbconfig:
5
+ configuration-parameters:
6
+ save: '""'
7
+ check:
8
+ keyspacelen: 1000000
9
+ preload_tool:
10
+ run_image: redislabs/memtier_benchmark:edge
11
+ tool: memtier_benchmark
12
+ arguments: '"--data-size" "100" "--ratio" "1:0" "--key-pattern" "P:P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1" "--key-maximum" "1000000" "-n" "allkeys"'
13
+ resources:
14
+ requests:
15
+ memory: 1g
16
+ tested-commands:
17
+ - set
18
+ - get
19
+ tested-groups:
20
+ - string
21
+ redis-topologies:
22
+ - oss-standalone
23
+ build-variants:
24
+ - gcc:8.5.0-amd64-debian-buster-default
25
+ - dockerhub
26
+ clientconfig:
27
+ run_image: redislabs/memtier_benchmark:edge
28
+ tool: memtier_benchmark
29
+ arguments: '"--data-size" "100" --distinct-client-seed --ratio 1:1 --key-pattern R:R --key-minimum=1 --key-maximum 1000000 --test-time 180 -c 25 -t 4 --hide-histogram --pipeline 10'
30
+ resources:
31
+ requests:
32
+ cpus: '4'
33
+ memory: 2g
34
+
35
+ priority: 1
@@ -0,0 +1,35 @@
1
+ version: 0.4
2
+ name: memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B
3
+ description: Runs memtier_benchmark, for a keyspace of 1M keys with 50% SETs and 50% GETs (mixed) with a data size of 100 Bytes.
4
+ dbconfig:
5
+ configuration-parameters:
6
+ save: '""'
7
+ check:
8
+ keyspacelen: 1000000
9
+ preload_tool:
10
+ run_image: redislabs/memtier_benchmark:edge
11
+ tool: memtier_benchmark
12
+ arguments: '"--data-size" "100" "--ratio" "1:0" "--key-pattern" "P:P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1" "--key-maximum" "1000000" "-n" "allkeys"'
13
+ resources:
14
+ requests:
15
+ memory: 1g
16
+ tested-commands:
17
+ - set
18
+ - get
19
+ tested-groups:
20
+ - string
21
+ redis-topologies:
22
+ - oss-standalone
23
+ build-variants:
24
+ - gcc:8.5.0-amd64-debian-buster-default
25
+ - dockerhub
26
+ clientconfig:
27
+ run_image: redislabs/memtier_benchmark:edge
28
+ tool: memtier_benchmark
29
+ arguments: '"--data-size" "100" --distinct-client-seed --ratio 1:1 --key-pattern R:R --key-minimum=1 --key-maximum 1000000 --test-time 180 -c 25 -t 4 --hide-histogram'
30
+ resources:
31
+ requests:
32
+ cpus: '4'
33
+ memory: 2g
34
+
35
+ priority: 1
@@ -0,0 +1,35 @@
1
+ version: 0.4
2
+ name: memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-1KB-pipeline-10
3
+ description: Runs memtier_benchmark, for a keyspace of 1M keys with 50% SETs and 50% GETs (mixed) with a data size of 1000 Bytes and pipeline 10.
4
+ dbconfig:
5
+ configuration-parameters:
6
+ save: '""'
7
+ check:
8
+ keyspacelen: 1000000
9
+ preload_tool:
10
+ run_image: redislabs/memtier_benchmark:edge
11
+ tool: memtier_benchmark
12
+ arguments: '"--data-size" "1000" "--ratio" "1:0" "--key-pattern" "P:P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1" "--key-maximum" "1000000" "-n" "allkeys"'
13
+ resources:
14
+ requests:
15
+ memory: 1g
16
+ tested-commands:
17
+ - set
18
+ - get
19
+ tested-groups:
20
+ - string
21
+ redis-topologies:
22
+ - oss-standalone
23
+ build-variants:
24
+ - gcc:8.5.0-amd64-debian-buster-default
25
+ - dockerhub
26
+ clientconfig:
27
+ run_image: redislabs/memtier_benchmark:edge
28
+ tool: memtier_benchmark
29
+ arguments: '"--data-size" "1000" --distinct-client-seed --ratio 1:1 --key-pattern R:R --key-minimum=1 --key-maximum 1000000 --test-time 180 -c 25 -t 4 --hide-histogram --pipeline 10'
30
+ resources:
31
+ requests:
32
+ cpus: '4'
33
+ memory: 2g
34
+
35
+ priority: 1
@@ -0,0 +1,35 @@
1
+ version: 0.4
2
+ name: memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-1KB
3
+ description: Runs memtier_benchmark, for a keyspace of 1M keys with 50% SETs and 50% GETs (mixed) with a data size of 1000 Bytes.
4
+ dbconfig:
5
+ configuration-parameters:
6
+ save: '""'
7
+ check:
8
+ keyspacelen: 1000000
9
+ preload_tool:
10
+ run_image: redislabs/memtier_benchmark:edge
11
+ tool: memtier_benchmark
12
+ arguments: '"--data-size" "1000" "--ratio" "1:0" "--key-pattern" "P:P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1" "--key-maximum" "1000000" "-n" "allkeys"'
13
+ resources:
14
+ requests:
15
+ memory: 1g
16
+ tested-commands:
17
+ - set
18
+ - get
19
+ tested-groups:
20
+ - string
21
+ redis-topologies:
22
+ - oss-standalone
23
+ build-variants:
24
+ - gcc:8.5.0-amd64-debian-buster-default
25
+ - dockerhub
26
+ clientconfig:
27
+ run_image: redislabs/memtier_benchmark:edge
28
+ tool: memtier_benchmark
29
+ arguments: '"--data-size" "1000" --distinct-client-seed --ratio 1:1 --key-pattern R:R --key-minimum=1 --key-maximum 1000000 --test-time 180 -c 25 -t 4 --hide-histogram'
30
+ resources:
31
+ requests:
32
+ cpus: '4'
33
+ memory: 2g
34
+
35
+ priority: 1
@@ -0,0 +1,35 @@
1
+ version: 0.4
2
+ name: memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-32B-pipeline-10
3
+ description: Runs memtier_benchmark, for a keyspace of 1M keys with 50% SETs and 50% GETs (mixed) with a data size of 32 Bytes and pipeline 10.
4
+ dbconfig:
5
+ configuration-parameters:
6
+ save: '""'
7
+ check:
8
+ keyspacelen: 1000000
9
+ preload_tool:
10
+ run_image: redislabs/memtier_benchmark:edge
11
+ tool: memtier_benchmark
12
+ arguments: '"--data-size" "32" "--ratio" "1:0" "--key-pattern" "P:P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1" "--key-maximum" "1000000" "-n" "allkeys"'
13
+ resources:
14
+ requests:
15
+ memory: 1g
16
+ tested-commands:
17
+ - set
18
+ - get
19
+ tested-groups:
20
+ - string
21
+ redis-topologies:
22
+ - oss-standalone
23
+ build-variants:
24
+ - gcc:8.5.0-amd64-debian-buster-default
25
+ - dockerhub
26
+ clientconfig:
27
+ run_image: redislabs/memtier_benchmark:edge
28
+ tool: memtier_benchmark
29
+ arguments: '"--data-size" "32" --distinct-client-seed --ratio 1:1 --key-pattern R:R --key-minimum=1 --key-maximum 1000000 --test-time 180 -c 25 -t 4 --hide-histogram --pipeline 10'
30
+ resources:
31
+ requests:
32
+ cpus: '4'
33
+ memory: 2g
34
+
35
+ priority: 1
@@ -0,0 +1,35 @@
1
+ version: 0.4
2
+ name: memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-32B
3
+ description: Runs memtier_benchmark, for a keyspace of 1M keys with 50% SETs and 50% GETs (mixed) with a data size of 32 Bytes.
4
+ dbconfig:
5
+ configuration-parameters:
6
+ save: '""'
7
+ check:
8
+ keyspacelen: 1000000
9
+ preload_tool:
10
+ run_image: redislabs/memtier_benchmark:edge
11
+ tool: memtier_benchmark
12
+ arguments: '"--data-size" "32" "--ratio" "1:0" "--key-pattern" "P:P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1" "--key-maximum" "1000000" "-n" "allkeys"'
13
+ resources:
14
+ requests:
15
+ memory: 1g
16
+ tested-commands:
17
+ - set
18
+ - get
19
+ tested-groups:
20
+ - string
21
+ redis-topologies:
22
+ - oss-standalone
23
+ build-variants:
24
+ - gcc:8.5.0-amd64-debian-buster-default
25
+ - dockerhub
26
+ clientconfig:
27
+ run_image: redislabs/memtier_benchmark:edge
28
+ tool: memtier_benchmark
29
+ arguments: '"--data-size" "32" --distinct-client-seed --ratio 1:1 --key-pattern R:R --key-minimum=1 --key-maximum 1000000 --test-time 180 -c 25 -t 4 --hide-histogram'
30
+ resources:
31
+ requests:
32
+ cpus: '4'
33
+ memory: 2g
34
+
35
+ priority: 1
@@ -0,0 +1,35 @@
1
+ version: 0.4
2
+ name: memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-512B-pipeline-10
3
+ description: Runs memtier_benchmark, for a keyspace of 1M keys with 50% SETs and 50% GETs (mixed) with a data size of 512 Bytes and pipeline 10.
4
+ dbconfig:
5
+ configuration-parameters:
6
+ save: '""'
7
+ check:
8
+ keyspacelen: 1000000
9
+ preload_tool:
10
+ run_image: redislabs/memtier_benchmark:edge
11
+ tool: memtier_benchmark
12
+ arguments: '"--data-size" "512" "--ratio" "1:0" "--key-pattern" "P:P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1" "--key-maximum" "1000000" "-n" "allkeys"'
13
+ resources:
14
+ requests:
15
+ memory: 1g
16
+ tested-commands:
17
+ - set
18
+ - get
19
+ tested-groups:
20
+ - string
21
+ redis-topologies:
22
+ - oss-standalone
23
+ build-variants:
24
+ - gcc:8.5.0-amd64-debian-buster-default
25
+ - dockerhub
26
+ clientconfig:
27
+ run_image: redislabs/memtier_benchmark:edge
28
+ tool: memtier_benchmark
29
+ arguments: '"--data-size" "512" --distinct-client-seed --ratio 1:1 --key-pattern R:R --key-minimum=1 --key-maximum 1000000 --test-time 180 -c 25 -t 4 --hide-histogram --pipeline 10'
30
+ resources:
31
+ requests:
32
+ cpus: '4'
33
+ memory: 2g
34
+
35
+ priority: 1
@@ -0,0 +1,35 @@
1
+ version: 0.4
2
+ name: memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-512B
3
+ description: Runs memtier_benchmark, for a keyspace of 1M keys with 50% SETs and 50% GETs (mixed) with a data size of 512 Bytes.
4
+ dbconfig:
5
+ configuration-parameters:
6
+ save: '""'
7
+ check:
8
+ keyspacelen: 1000000
9
+ preload_tool:
10
+ run_image: redislabs/memtier_benchmark:edge
11
+ tool: memtier_benchmark
12
+ arguments: '"--data-size" "512" "--ratio" "1:0" "--key-pattern" "P:P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1" "--key-maximum" "1000000" "-n" "allkeys"'
13
+ resources:
14
+ requests:
15
+ memory: 1g
16
+ tested-commands:
17
+ - set
18
+ - get
19
+ tested-groups:
20
+ - string
21
+ redis-topologies:
22
+ - oss-standalone
23
+ build-variants:
24
+ - gcc:8.5.0-amd64-debian-buster-default
25
+ - dockerhub
26
+ clientconfig:
27
+ run_image: redislabs/memtier_benchmark:edge
28
+ tool: memtier_benchmark
29
+ arguments: '"--data-size" "512" --distinct-client-seed --ratio 1:1 --key-pattern R:R --key-minimum=1 --key-maximum 1000000 --test-time 180 -c 25 -t 4 --hide-histogram'
30
+ resources:
31
+ requests:
32
+ cpus: '4'
33
+ memory: 2g
34
+
35
+ priority: 1
@@ -0,0 +1,32 @@
1
+ version: 0.4
2
+ name: memtier_benchmark-1key-zset-listpack-zrank-100-elements-pipeline-1
3
+ description: Runs memtier_benchmark, for a keyspace length of 1 SORTED SET key. The SORTED SET contains 100 elements (listpack encoded) and we query it using ZRANK.
4
+ dbconfig:
5
+ configuration-parameters:
6
+ save: '""'
7
+ check:
8
+ keyspacelen: 1
9
+ init_commands:
10
+ - '"ZADD" "zset:listpack:100" "1" "1" "2" "2" "3" "3" "4" "4" "5" "5" "6" "6" "7" "7" "8" "8" "9" "9" "10" "10" "11" "11" "12" "12" "13" "13" "14" "14" "15" "15" "16" "16" "17" "17" "18" "18" "19" "19" "20" "20" "21" "21" "22" "22" "23" "23" "24" "24" "25" "25" "26" "26" "27" "27" "28" "28" "29" "29" "30" "30" "31" "31" "32" "32" "33" "33" "34" "34" "35" "35" "36" "36" "37" "37" "38" "38" "39" "39" "40" "40" "41" "41" "42" "42" "43" "43" "44" "44" "45" "45" "46" "46" "47" "47" "48" "48" "49" "49" "50" "50" "51" "51" "52" "52" "53" "53" "54" "54" "55" "55" "56" "56" "57" "57" "58" "58" "59" "59" "60" "60" "61" "61" "62" "62" "63" "63" "64" "64" "65" "65" "66" "66" "67" "67" "68" "68" "69" "69" "70" "70" "71" "71" "72" "72" "73" "73" "74" "74" "75" "75" "76" "76" "77" "77" "78" "78" "79" "79" "80" "80" "81" "81" "82" "82" "83" "83" "84" "84" "85" "85" "86" "86" "87" "87" "88" "88" "89" "89" "90" "90" "91" "91" "92" "92" "93" "93" "94" "94" "95" "95" "96" "96" "97" "97" "98" "98" "99" "99" "100" "100"'
11
+ resources:
12
+ requests:
13
+ memory: 1g
14
+ tested-groups:
15
+ - sorted-set
16
+ tested-commands:
17
+ - zrank
18
+ redis-topologies:
19
+ - oss-standalone
20
+ build-variants:
21
+ - gcc:8.5.0-amd64-debian-buster-default
22
+ - dockerhub
23
+ clientconfig:
24
+ run_image: redislabs/memtier_benchmark:edge
25
+ tool: memtier_benchmark
26
+ arguments: --command="ZRANK zset:listpack:100 __key__" --key-maximum 100 --key-minimum 1 --command-key-pattern=R --key-prefix "" --hide-histogram --test-time 180 --pipeline 1
27
+ resources:
28
+ requests:
29
+ cpus: '4'
30
+ memory: 2g
31
+
32
+ priority: 72
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.1
2
2
  Name: redis-benchmarks-specification
3
- Version: 0.1.270
3
+ Version: 0.1.272
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
@@ -9,7 +9,6 @@ Classifier: Programming Language :: Python :: 3
9
9
  Classifier: Programming Language :: Python :: 3.10
10
10
  Classifier: Programming Language :: Python :: 3.11
11
11
  Classifier: Programming Language :: Python :: 3.12
12
- Classifier: Programming Language :: Python :: 3.13
13
12
  Requires-Dist: Flask (>=2.0.3,<3.0.0)
14
13
  Requires-Dist: Flask-HTTPAuth (>=4.4.0,<5.0.0)
15
14
  Requires-Dist: GitPython (>=3.1.20,<4.0.0)
@@ -78,6 +78,7 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-expi
78
78
  redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-pexpire-pipeline-10.yml,sha256=uXOPp6zFHfyck8BCfhYUhK3J7jH0mRRLzCYEdVKakBM,1030
79
79
  redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-scan-count-500-pipeline-10.yml,sha256=tFX1L7CAfbFsvHVRTC0dCr8eA1OCjouW0jC_xM3Skr0,1041
80
80
  redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-scan-cursor-count-500-pipeline-10.yml,sha256=rtnlyjnEVMwS64YT5QdUds4CY7SsrrRIYmN1rQS4EY4,1126
81
+ redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-scan-cursor-count-5000-pipeline-10.yml,sha256=9f6iS_CkJJr20Wce0y1hLjLdiYm7sU-jz6di5PmXmRA,1128
81
82
  redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-scan-cursor-pipeline-10.yml,sha256=lP5tlnbc2LXzU9Amz2uKX8QCSdcKHkvnDjREu6FCWHY,1090
82
83
  redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-scan-pipeline-10.yml,sha256=EyC4q7qr4BcuMEXzsA8kXzN5_Yl1-DOIY7Ocb1pND2E,1004
83
84
  redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-scan-type-pipeline-10.yml,sha256=RLza-HVJiYRRsnWjJ8BY2VuxOcUmcPpQ6-xSi-0Q-2c,1040
@@ -134,6 +135,8 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-1
134
135
  redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-10B.yml,sha256=ibgaQn8067_O6J-6Bl4lEmVQcSemNI_MN1wu0_h-Xew,969
135
136
  redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-1KiB-pipeline-10.yml,sha256=uNd4n85ymXHyX_s0Mcx0Cj_dBtLCECmy1D-0ZxkllGw,1052
136
137
  redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-1KiB.yml,sha256=HGsd-oHK8-hUzMy1oZTwkCoudaaS8hu1tuqeSOqclkg,1038
138
+ redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-32B-pipeline-10.yml,sha256=vrq1eQ6g6zcxWch48rxDCCVoU-A0mmy4lFwaupYLMhg,966
139
+ redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-32B.yml,sha256=YeNR6IoqYlVbdzcrSINUNzp-HSnMuzJk_23Ko3MriPM,940
137
140
  redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-incr-pipeline-10.yml,sha256=ocSWnNSWQnWFCH--7HEnMrY60jlWUBcF2bnw1wvXdpU,723
138
141
  redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-incrby-pipeline-10.yml,sha256=zQuBWbhJqc47y_fNzSL4IoVSV3bab4zZ-Azf6YK1nB0,733
139
142
  redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-incrby.yml,sha256=jU9FuUVTYNruLmBwS1GDA6oUzi8iBi5lgVOLJABTsew,707
@@ -141,6 +144,16 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-incrb
141
144
  redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-incrbyfloat.yml,sha256=4UnmF-vx8At2ah1YjFUMHgvXFpfi4EVVXsAWjN42M78,728
142
145
  redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-int-encoding-strlen-pipeline-10.yml,sha256=wKXG73RiNnIGKv_YCSvJ0jnKar7YjkRpvhnIOdK62cI,1100
143
146
  redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mget-1KiB.yml,sha256=s1PLNH__vexG6bE-GL_xPAqVelupxY73AWWE5siYIYE,999
147
+ redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B-expire-pipeline-10.yml,sha256=Rm4P0OoY5KYdLteSR_ts9Pc4_9QRLoKSbQ4A4WjU40Q,1243
148
+ redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B-expire.yml,sha256=-rEiG-0wpb4RzcW4RW41ACgNkfP_fviHFsxqDwXu8CQ,1203
149
+ redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B-pipeline-10.yml,sha256=vqnCMUbtSStl-XOzKsbumLjtfX2LgMiky1wZNnaX5_I,1129
150
+ redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B.yml,sha256=1_H5cpzeUO3jv4PXdv30JBgFcQZvJQutteAd2SaL2W8,1087
151
+ redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-1KB-pipeline-10.yml,sha256=BVzkURX8RKJ0k1F7MTo3YH-Dbk_ly8yHOGi2sl0_sqI,1131
152
+ redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-1KB.yml,sha256=N_U6v4RibpQFTQP3imhLjT8uJSWPosALIO05E8fndVY,1089
153
+ redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-32B-pipeline-10.yml,sha256=CIdrQkpluASUtNtpQ02f950v6roXViqq_PXsLteq8Lg,1125
154
+ redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-32B.yml,sha256=cwc8qWJbWVqMvEbnSVUjLBLSjD_I60pt1fPqVrnfZII,1083
155
+ redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-512B-pipeline-10.yml,sha256=H2AdyIOT1nQrf0hqawO8rvjc9kks1zJjeT8-rkxFs0k,1129
156
+ redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-512B.yml,sha256=RWQaZ5HKFEPzX6wFkpmpwWDXlwoqkcEsx_oQH5SoiDI,1087
144
157
  redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-with-expiration-240B-400_conns.yml,sha256=34N8h1x0aaRh6HNWBo2rFaMNIjJE5_CNXmL2kuIUD8o,1206
145
158
  redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-set-with-ex-100B-pipeline-10.yml,sha256=bmFN61JPtQ6TWCGzUMmnhNcjgA5lMurAMlBSL9jBvX0,1035
146
159
  redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setex-100B-pipeline-10.yml,sha256=W_h2zXnSXLBfgXwyY2m0RowiWJUffHNRHMbmpnp7kAo,1030
@@ -219,6 +232,7 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-1M-elemen
219
232
  redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-1M-elements-zscore-pipeline-10.yml,sha256=SKHxxVXYKsTvTDCmOgV85kPYDk4KH_9WnJIg_wAxqG0,1012
220
233
  redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-600K-elements-zrangestore-1K-elements.yml,sha256=k1WtUhkyyf-jgTFNhQXNQQAyPKP7TghVVN2TkFm6gk8,1112
221
234
  redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-600K-elements-zrangestore-300K-elements.yml,sha256=J7OwMWeyrv8avA4gs5mpcdCvRV3zuAZjCbFh_IBOnUg,1305
235
+ redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-listpack-zrank-100-elements-pipeline-1.yml,sha256=q9TO5ghbpp6tChCRKVKQQo2haHwe6FkZ796dVIl75LY,1905
222
236
  redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-lua-eval-hset-expire.yml,sha256=AyjvZA310cz8qfg62fGcfQUlkaFPnVmUkx92HQ4cStU,955
223
237
  redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-lua-evalsha-hset-expire.yml,sha256=q5M3iOvvYoFtnyKhyYV9hP3VvceQuSXa-D0CL9Uftn8,1033
224
238
  redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-set-10-100-elements-sdiff.yml,sha256=fH1hbBCJjmiyE2aDVrmHjpAR75124mePhQ6N94bHRm0,2371
@@ -244,8 +258,8 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-pubsub-publi
244
258
  redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-server-time-pipeline-10.yml,sha256=rJuWWXubUeRKQ2GSfHlbPMLeOyM9Eu_MzvN2vgKcAhA,672
245
259
  redis_benchmarks_specification/test-suites/template.txt,sha256=d_edIE7Sxa5X7I2yG-Io0bPdbDIHR0oWFoCA3XUt_EU,435
246
260
  redis_benchmarks_specification/vector-search-test-suites/vector_db_benchmark_test.yml,sha256=uhaSP6YUVmPvZU-qMtPPGdvNEUgUBqOfveUbeJ9WsbI,972
247
- redis_benchmarks_specification-0.1.270.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
248
- redis_benchmarks_specification-0.1.270.dist-info/METADATA,sha256=UWKiY1RGmVKWoAPIZjRKvX_-ITDJcpa4mx6vb1nA36Q,22777
249
- redis_benchmarks_specification-0.1.270.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
250
- redis_benchmarks_specification-0.1.270.dist-info/entry_points.txt,sha256=x5WBXCZsnDRTZxV7SBGmC65L2k-ygdDOxV8vuKN00Nk,715
251
- redis_benchmarks_specification-0.1.270.dist-info/RECORD,,
261
+ redis_benchmarks_specification-0.1.272.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
262
+ redis_benchmarks_specification-0.1.272.dist-info/METADATA,sha256=ErFgww4LFvvCsDinWnXTeyzrwcHanyeRG573o7ho49o,22726
263
+ redis_benchmarks_specification-0.1.272.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
264
+ redis_benchmarks_specification-0.1.272.dist-info/entry_points.txt,sha256=x5WBXCZsnDRTZxV7SBGmC65L2k-ygdDOxV8vuKN00Nk,715
265
+ redis_benchmarks_specification-0.1.272.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 2.1.3
2
+ Generator: poetry-core 1.9.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any