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

@@ -0,0 +1,34 @@
1
+ version: 0.4
2
+ name: memtier_benchmark-1key-list-10K-elements-lindex-integer
3
+ description: 'Runs memtier_benchmark, for a keyspace length of 1 LIST key. The LIST contains 10000 integer elements in it and we query it using LINDEX of a element that we know it is in the middle of the list. '
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: --hide-histogram --command "RPUSH intlist __key__" --key-maximum 10000 --key-minimum 1 -n allkeys --key-prefix "" --command-key-pattern S -c 1 -t 1 --pipeline 10
13
+ resources:
14
+ requests:
15
+ cpus: '2'
16
+ memory: 1g
17
+ tested-groups:
18
+ - list
19
+ tested-commands:
20
+ - lindex
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: --command="LINDEX intlist 5000" --hide-histogram --test-time 120
30
+ resources:
31
+ requests:
32
+ cpus: '4'
33
+ memory: 2g
34
+ priority: 34
@@ -0,0 +1,34 @@
1
+ version: 0.4
2
+ name: memtier_benchmark-1key-list-10K-elements-lindex-string
3
+ description: 'Runs memtier_benchmark, for a keyspace length of 1 LIST key. The LIST contains 10000 string elements in it and we query it using LPOS of a element that we know it is in the middle of the list. '
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: --hide-histogram --command "RPUSH strlist __key__" --key-maximum 10000 --key-minimum 1 -n allkeys --key-prefix "hello" --command-key-pattern S -c 1 -t 1 --pipeline 10
13
+ resources:
14
+ requests:
15
+ cpus: '2'
16
+ memory: 1g
17
+ tested-groups:
18
+ - list
19
+ tested-commands:
20
+ - lindex
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: --command="LINDEX strlist 5000" --hide-histogram --test-time 120
30
+ resources:
31
+ requests:
32
+ cpus: '4'
33
+ memory: 2g
34
+ priority: 34
@@ -0,0 +1,35 @@
1
+ version: 0.4
2
+ name: memtier_benchmark-1key-list-10K-elements-linsert-lrem-integer
3
+ description: 'Runs memtier_benchmark, for a keyspace length of 1 LIST key. The LIST contains 10000 integer elements in it and we query it using LINSERT / LREM in the middle of the list. Given we add and delete right after the performance and list lenght over the test should be constant (meaning running for 60secs or 600secs wont change the list size) '
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: --hide-histogram --command "RPUSH intlist __key__" --key-maximum 10000 --key-minimum 1 -n allkeys --key-prefix "" --command-key-pattern S -c 1 -t 1 --pipeline 10
13
+ resources:
14
+ requests:
15
+ cpus: '2'
16
+ memory: 1g
17
+ tested-groups:
18
+ - list
19
+ tested-commands:
20
+ - linsert
21
+ - lrem
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: --command="LINSERT intlist AFTER 5000 5001" --command="LREM intlist 1 5001" --hide-histogram --test-time 120
31
+ resources:
32
+ requests:
33
+ cpus: '4'
34
+ memory: 2g
35
+ priority: 34
@@ -0,0 +1,35 @@
1
+ version: 0.4
2
+ name: memtier_benchmark-1key-list-10K-elements-linsert-lrem-string
3
+ description: 'Runs memtier_benchmark, for a keyspace length of 1 LIST key. The LIST contains 10000 string elements in it and we query it using LINSERT / LREM in the middle of the list. Given we add and delete right after the performance and list lenght over the test should be constant (meaning running for 60secs or 600secs wont change the list size) '
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: --hide-histogram --command "RPUSH strlist __key__" --key-maximum 10000 --key-minimum 1 -n allkeys --key-prefix "hello" --command-key-pattern S -c 1 -t 1 --pipeline 10
13
+ resources:
14
+ requests:
15
+ cpus: '2'
16
+ memory: 1g
17
+ tested-groups:
18
+ - list
19
+ tested-commands:
20
+ - linsert
21
+ - lrem
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: --command="LINSERT strlist AFTER hello5000 hello5000-new" --command="LREM strlist 1 hello5000-new" --hide-histogram --test-time 120
31
+ resources:
32
+ requests:
33
+ cpus: '4'
34
+ memory: 2g
35
+ priority: 34
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: redis-benchmarks-specification
3
- Version: 0.1.237
3
+ Version: 0.1.238
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
@@ -140,6 +140,10 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10-elemen
140
140
  redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10-elements-lrange-all-elements.yml,sha256=Gz7qlq4GB2GfxAvU1Ijyh2tYOua2Kg4oMr46QJ5g3y8,938
141
141
  redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-100-elements-lrange-all-elements-pipeline-10.yml,sha256=kJEKi1Jd9V8f8iT1OFYwg6Tqe610v2RifaLu_hRv3eg,2138
142
142
  redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-100-elements-lrange-all-elements.yml,sha256=On8EBrmCX0qtdVIIp9Kd8y6TW6l6aRvBWaqXlHJT02c,2112
143
+ redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10K-elements-lindex-integer.yml,sha256=MFFSXtxPzrGnsnKFgQ0lBgvjAaceHrpyD-CppsuuhGk,1086
144
+ redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10K-elements-lindex-string.yml,sha256=_NgE_8dT--V8Vxkg0qokwcnqStAdJypn1xDl_teKCco,1087
145
+ redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10K-elements-linsert-lrem-integer.yml,sha256=RwZEGeFQpfB0lDqPA8m42_e1HtsnHVabKvNLlkIreAk,1287
146
+ redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10K-elements-linsert-lrem-string.yml,sha256=xqSCWi2K-ctKwkDcjNh_o-IBsVQdWckIbfihWCFCC6o,1313
143
147
  redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10K-elements-lpos-integer.yml,sha256=UpPoFiuLmwH8mvLGRiOg7iTbx62-0GN623Rz7Xj9wlk,1078
144
148
  redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10K-elements-lpos-string.yml,sha256=kSRh3UiQNhQFfIjKqn_5JoOuY54sTmNiolzPo2lAvjA,1086
145
149
  redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-1K-elements-lrange-all-elements-pipeline-10.yml,sha256=AZHmEp8OSeJbRJMerScJDlUtEqR-AZ40G8ZoSI-ZgQw,13840
@@ -186,8 +190,8 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-zset-300-elem
186
190
  redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-load-string-with-512B-values.yml,sha256=XAIFlbR6VJnmQRwedLGBGenbIsMC_I3uA35Mz_bkTTc,1028
187
191
  redis_benchmarks_specification/test-suites/memtier_benchmark-connection-hello.yml,sha256=VIFNaaAqRQMeDvtXmKGDpJTnu658Lv5i_oAju5uSi_c,708
188
192
  redis_benchmarks_specification/test-suites/template.txt,sha256=d_edIE7Sxa5X7I2yG-Io0bPdbDIHR0oWFoCA3XUt_EU,435
189
- redis_benchmarks_specification-0.1.237.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
190
- redis_benchmarks_specification-0.1.237.dist-info/METADATA,sha256=Sc7PRpCL-cDeH4zS6UrU2zd3IGxcZvFyRL6ueXEiav0,22726
191
- redis_benchmarks_specification-0.1.237.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
192
- redis_benchmarks_specification-0.1.237.dist-info/entry_points.txt,sha256=x5WBXCZsnDRTZxV7SBGmC65L2k-ygdDOxV8vuKN00Nk,715
193
- redis_benchmarks_specification-0.1.237.dist-info/RECORD,,
193
+ redis_benchmarks_specification-0.1.238.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
194
+ redis_benchmarks_specification-0.1.238.dist-info/METADATA,sha256=SPlFQ2eAAY7uxXA_RcDM8Pb2VvU_x4UQZ7-xqnOIWpI,22726
195
+ redis_benchmarks_specification-0.1.238.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
196
+ redis_benchmarks_specification-0.1.238.dist-info/entry_points.txt,sha256=x5WBXCZsnDRTZxV7SBGmC65L2k-ygdDOxV8vuKN00Nk,715
197
+ redis_benchmarks_specification-0.1.238.dist-info/RECORD,,