-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed comparison ERROR on coordinator, and extended hash,bitmap, and …
…list benchmarks (#270) * Enabled running forks source built benchmarks * Fixed server_name Null check * Enabled passing baseline/comparison hash and github_repo to ensure proper data filtering on compare. Removed refs/heads/ usage from builder * skipping cli builder test on ci * Added --baseline-target-branch and --comparison-target-branch to the compare tool * Added GEOPOS and GEOSEARCH WITHCOORD new benchmarks * Included the connection setup benchmark using HELLO * Bumping version from 0.1.218 to 0.1.219 * Added APPEND/INCRBY/INCRBYFLOAT/SETRANGE benchmarks * Included APPEND,INCRBY,INCRBYFLOAT,SETRANGE pipeline 10 benchmarks * Added SETEX benchmark * Added ZUNION, ZUNIONSTORE, and extra ZADD benchmarks. Included SADD benchmarks with intset underlying encoding * Included extra pipeline 10 and lrange with longs benchmarks * Included HGETALL 50 fields use-case * Added HGETALL 50 fields use-case. 10Bytes and 100Bytes * Fixed comparison on CI * Added BITCOUNT benchmarks
- Loading branch information
1 parent
e31755f
commit d70c269
Showing
15 changed files
with
401 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "redis-benchmarks-specification" | ||
version = "0.1.226" | ||
version = "0.1.234" | ||
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." | ||
authors = ["filipecosta90 <[email protected]>","Redis Performance Group <[email protected]>"] | ||
readme = "Readme.md" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
...ecification/test-suites/memtier_benchmark-100Kkeys-hash-hgetall-50-fields-100B-values.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
version: 0.4 | ||
name: memtier_benchmark-100Kkeys-hash-hgetall-50-fields-100B-values | ||
description: Runs memtier_benchmark, for a keyspace length of 1M keys pre-loading HASHes in which the value has a data size of 10 Bytes. After pre-loading the data it issues HGETALL command. | ||
dbconfig: | ||
configuration-parameters: | ||
save: '""' | ||
check: | ||
keyspacelen: 100000 | ||
preload_tool: | ||
run_image: redislabs/memtier_benchmark:edge | ||
tool: memtier_benchmark | ||
arguments: '"--data-size" "100" --command "HSET __key__ field:1 __data__ field:2 __data__ field:3 __data__ field:4 __data__ field:5 __data__ field:6 __data__ field:7 __data__ field:8 __data__ field:9 __data__ field:10 __data__ field:11 __data__ field:12 __data__ field:13 __data__ field:14 __data__ field:15 __data__ field:16 __data__ field:17 __data__ field:18 __data__ field:19 __data__ field:20 __data__ field:21 __data__ field:22 __data__ field:23 __data__ field:24 __data__ field:25 __data__ field:26 __data__ field:27 __data__ field:28 __data__ field:29 __data__ field:30 __data__ field:31 __data__ field:32 __data__ field:33 __data__ field:34 __data__ field:35 __data__ field:36 __data__ field:37 __data__ field:38 __data__ field:39 __data__ field:40 __data__ field:41 __data__ field:42 __data__ field:43 __data__ field:44 __data__ field:45 __data__ field:46 __data__ field:47 __data__ field:48 __data__ field:49 __data__ field:50 __data__" --command-key-pattern="P" --key-minimum=1 --key-maximum 1000000 -n 500 -c 50 -t 4 --hide-histogram' | ||
resources: | ||
requests: | ||
memory: 2g | ||
tested-groups: | ||
- hash | ||
tested-commands: | ||
- hgetall | ||
redis-topologies: | ||
- oss-standalone | ||
build-variants: | ||
- gcc:8.5.0-amd64-debian-buster-default | ||
- dockerhub | ||
clientconfig: | ||
run_image: redislabs/memtier_benchmark:edge | ||
tool: memtier_benchmark | ||
arguments: ' --command "HGETALL __key__" --command-key-pattern="R" --key-minimum=1 --key-maximum 100000 --test-time 120 -c 50 -t 4 --hide-histogram' | ||
resources: | ||
requests: | ||
cpus: '4' | ||
memory: 2g | ||
|
||
priority: 96 |
Oops, something went wrong.