Skip to content

Commit d9c42fc

Browse files
Include a DECR benchmark covering embstring object (#237)
* Include a DECR benchmark covering embstring object * Bumping version from 0.1.71 to 0.1.72 * Fixes based uppon spec linter
1 parent ead8bdd commit d9c42fc

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "redis-benchmarks-specification"
3-
version = "0.1.71"
3+
version = "0.1.72"
44
description = "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."
55
authors = ["filipecosta90 <[email protected]>","Redis Performance Group <[email protected]>"]
66
readme = "Readme.md"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
version: 0.4
2+
name: memtier_benchmark-1Mkeys-string-decr
3+
description: Runs memtier_benchmark, for a keyspace length of 1M keys testing use embedded string object encoding on the string and doing decr command.
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: ' --command "SET __key__ 9223372036854775807" --command-key-pattern="P" -n 5000 --key-minimum=1 --key-maximum 1000000 -c 50 -t 4 --hide-histogram'
13+
resources:
14+
requests:
15+
memory: 1g
16+
tested-commands:
17+
- decr
18+
redis-topologies:
19+
- oss-standalone
20+
build-variants:
21+
- gcc:8.5.0-amd64-debian-buster-default
22+
clientconfig:
23+
run_image: redislabs/memtier_benchmark:edge
24+
tool: memtier_benchmark
25+
arguments: --test-time 180 --command "DECR __key__" --command-key-pattern="R" --key-minimum=1 --key-maximum 1000000 -c 4 -t 4 --hide-histogram
26+
resources:
27+
requests:
28+
cpus: '4'
29+
memory: 2g
30+
31+
tested-groups:
32+
- string
33+
priority: 98

0 commit comments

Comments
 (0)