redis-benchmarks-specification 0.2.10__py3-none-any.whl → 0.2.11__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/test-suites/memtier_benchmark-playbook-rate-limiting-lua-100k-sessions.yml +34 -63
- {redis_benchmarks_specification-0.2.10.dist-info → redis_benchmarks_specification-0.2.11.dist-info}/METADATA +1 -1
- {redis_benchmarks_specification-0.2.10.dist-info → redis_benchmarks_specification-0.2.11.dist-info}/RECORD +6 -6
- {redis_benchmarks_specification-0.2.10.dist-info → redis_benchmarks_specification-0.2.11.dist-info}/LICENSE +0 -0
- {redis_benchmarks_specification-0.2.10.dist-info → redis_benchmarks_specification-0.2.11.dist-info}/WHEEL +0 -0
- {redis_benchmarks_specification-0.2.10.dist-info → redis_benchmarks_specification-0.2.11.dist-info}/entry_points.txt +0 -0
|
@@ -1,74 +1,45 @@
|
|
|
1
1
|
version: 0.4
|
|
2
2
|
name: memtier_benchmark-playbook-rate-limiting-lua-100k-sessions
|
|
3
|
-
description:
|
|
4
|
-
Runs memtier_benchmark to model
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
local key = KEYS[1]
|
|
9
|
-
local limit = 100
|
|
10
|
-
local window = 60
|
|
11
|
-
local current = redis.call("INCR", key)
|
|
12
|
-
if current == 1 then
|
|
13
|
-
redis.call("EXPIRE", key, window)
|
|
14
|
-
end
|
|
15
|
-
if current > limit then
|
|
16
|
-
return 0
|
|
17
|
-
else
|
|
18
|
-
return 1
|
|
19
|
-
end
|
|
20
|
-
|
|
21
|
-
This approach ensures that **increments, expiry, and limit checks** are performed without race conditions,
|
|
22
|
-
accurately modeling production-grade API quota enforcement.
|
|
23
|
-
|
|
24
|
-
### Workload profile
|
|
25
|
-
- **Command tested**: `EVAL` (rate-limit script)
|
|
26
|
-
- **Keyspace size**: 100k user-level rate-limit keys
|
|
27
|
-
- **Access pattern**: randomized keys (`--command-key-pattern=R`) to simulate distributed users
|
|
28
|
-
- **Response shape**: single integer (1 = allowed, 0 = denied), representing pass/fail on quota checks
|
|
29
|
-
|
|
30
|
-
This benchmark measures Redis performance in **rate limiting scenarios**, where atomic counters and TTLs
|
|
31
|
-
are critical for API protection and fairness in multi-tenant SaaS workloads.
|
|
32
|
-
|
|
33
|
-
exporter:
|
|
34
|
-
redistimeseries:
|
|
35
|
-
break_by:
|
|
36
|
-
- version
|
|
37
|
-
- commit
|
|
38
|
-
timemetric: $."ALL STATS".Runtime."Start time"
|
|
39
|
-
metrics:
|
|
40
|
-
- $."BEST RUN RESULTS".Totals."Ops/sec"
|
|
41
|
-
- $."BEST RUN RESULTS".Totals."Latency"
|
|
42
|
-
- $."BEST RUN RESULTS".Totals."Misses/sec"
|
|
43
|
-
- $."BEST RUN RESULTS".Totals."Percentile Latencies"."p50.00"
|
|
44
|
-
- $."BEST RUN RESULTS".Totals."Percentile Latencies"."p99.00"
|
|
45
|
-
- $."ALL STATS".Evals."Ops/sec"
|
|
46
|
-
- $."ALL STATS".Totals."Ops/sec"
|
|
47
|
-
- $."ALL STATS".Totals."Latency"
|
|
48
|
-
- $."ALL STATS".Totals."Misses/sec"
|
|
49
|
-
- $."ALL STATS".Totals."Percentile Latencies"."p50.00"
|
|
50
|
-
- $."ALL STATS".Totals."Percentile Latencies"."p99.00"
|
|
51
|
-
|
|
3
|
+
description: |
|
|
4
|
+
Runs memtier_benchmark to model a **bitmap-based rate limit gate** using Lua: the script performs
|
|
5
|
+
a `BITCOUNT` on a single bitmap key and **allows** if the count is below a configurable threshold,
|
|
6
|
+
otherwise **denies** (no other data structures or mutations are performed).
|
|
52
7
|
|
|
53
8
|
dbconfig:
|
|
54
9
|
configuration-parameters:
|
|
55
10
|
save: '""'
|
|
11
|
+
|
|
12
|
+
init_commands:
|
|
13
|
+
- '"SETBIT" "1" "100000" "1"'
|
|
14
|
+
preload_tool:
|
|
15
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
16
|
+
tool: memtier_benchmark
|
|
17
|
+
arguments: >
|
|
18
|
+
--hide-histogram
|
|
19
|
+
--command "SETBIT __key__ __key__ 1"
|
|
20
|
+
--key-maximum 100000
|
|
21
|
+
--key-minimum 1
|
|
22
|
+
--key-prefix ""
|
|
23
|
+
-t 1 -c 1
|
|
24
|
+
--command-key-pattern R
|
|
25
|
+
--distinct-client-seed
|
|
26
|
+
-n 100000
|
|
27
|
+
--pipeline 50
|
|
56
28
|
resources:
|
|
57
29
|
requests:
|
|
30
|
+
cpus: '2'
|
|
58
31
|
memory: 1g
|
|
59
|
-
tested-groups:
|
|
60
|
-
- hash
|
|
61
|
-
- sorted-set
|
|
62
|
-
- set
|
|
63
|
-
- scripting
|
|
64
32
|
|
|
65
33
|
tested-commands:
|
|
66
|
-
-
|
|
67
|
-
- expire
|
|
34
|
+
- bitcount
|
|
68
35
|
- eval
|
|
36
|
+
tested-groups:
|
|
37
|
+
- bitmap
|
|
38
|
+
- scripting
|
|
69
39
|
|
|
70
40
|
redis-topologies:
|
|
71
41
|
- oss-standalone
|
|
42
|
+
|
|
72
43
|
build-variants:
|
|
73
44
|
- gcc:15.2.0-amd64-debian-bookworm-default
|
|
74
45
|
- gcc:15.2.0-arm64-debian-bookworm-default
|
|
@@ -78,17 +49,17 @@ clientconfig:
|
|
|
78
49
|
run_image: redislabs/memtier_benchmark:edge
|
|
79
50
|
tool: memtier_benchmark
|
|
80
51
|
arguments: >
|
|
81
|
-
--key-prefix ""
|
|
82
|
-
--key-minimum 1
|
|
83
|
-
--key-maximum 100000
|
|
84
|
-
--pipeline=1
|
|
85
52
|
--print-percentiles=50,90,95,99
|
|
86
53
|
--run-count=1
|
|
87
54
|
--test-time=120
|
|
88
|
-
--
|
|
55
|
+
--hide-histogram
|
|
56
|
+
--key-maximum 100000
|
|
57
|
+
--key-minimum 1
|
|
58
|
+
--key-prefix ""
|
|
59
|
+
--command='EVAL "local k=KEYS[1];local limit=tonumber(ARGV[1]);local c=redis.call(\"BITCOUNT\",k);if c>=limit then return {0,0,c} else return {1,limit-c,c} end" 1 __key__ 2000000'
|
|
89
60
|
resources:
|
|
90
61
|
requests:
|
|
91
|
-
cpus: '
|
|
62
|
+
cpus: '2'
|
|
92
63
|
memory: 2g
|
|
93
64
|
|
|
94
|
-
priority:
|
|
65
|
+
priority: 19
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: redis-benchmarks-specification
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.11
|
|
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
|
|
@@ -277,7 +277,7 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-pubsub-mixed
|
|
|
277
277
|
redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-pubsub-publish-1K-channels-10B-no-subscribers.yml,sha256=8M9AdpNaVBuSUm78cqKModOF_xITV_RM7RLCTyvtvaQ,825
|
|
278
278
|
redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-server-time-pipeline-10.yml,sha256=zeTHtpbhNGfzTXHfr9P5e62PebxUONRvTsCbXJZhsTs,721
|
|
279
279
|
redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-leaderboard.yml,sha256=YZTgci8gAfGxTDAM-GHMn_w4hqeNoS4Yi6FYX9JyCt0,6690
|
|
280
|
-
redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-rate-limiting-lua-100k-sessions.yml,sha256=
|
|
280
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-rate-limiting-lua-100k-sessions.yml,sha256=z2APnBAH_leRRYDQXjA-5gFwScNgKT4mVyBh5wLb3SU,1636
|
|
281
281
|
redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-realtime-analytics-membership-pipeline-10.yml,sha256=uh0J81Y27_YnQfDqzaTpYtJNvIdRFJtYsBUmXGTBrl4,2842
|
|
282
282
|
redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-realtime-analytics-membership.yml,sha256=y_q6GWbodKpVA48o1a1frqF0bU52utIOnjIjuiQt0qk,2816
|
|
283
283
|
redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-session-caching-hash-100k-sessions.yml,sha256=H98DrXlq-lRhoe1M7vehfDBbUdZ7WwWroriTpklx-PI,3646
|
|
@@ -287,8 +287,8 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-session-st
|
|
|
287
287
|
redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-session-storage-1k-sessions.yml,sha256=2egtIxPxCze2jlbAfgsk4v9JSQHNMoPLbDWFEW8olDg,7006
|
|
288
288
|
redis_benchmarks_specification/test-suites/template.txt,sha256=ezqGiRPOvuSDO0iG7GEf-AGXNfHbgXI89_G0RUEzL88,481
|
|
289
289
|
redis_benchmarks_specification/vector-search-test-suites/vector_db_benchmark_test.yml,sha256=PD7ow-k4Ll2BkhEC3aIqiaCZt8Hc4aJIp96Lw3J3mcI,791
|
|
290
|
-
redis_benchmarks_specification-0.2.
|
|
291
|
-
redis_benchmarks_specification-0.2.
|
|
292
|
-
redis_benchmarks_specification-0.2.
|
|
293
|
-
redis_benchmarks_specification-0.2.
|
|
294
|
-
redis_benchmarks_specification-0.2.
|
|
290
|
+
redis_benchmarks_specification-0.2.11.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
291
|
+
redis_benchmarks_specification-0.2.11.dist-info/METADATA,sha256=jMZfRmAt0i8Xr2p-hbc5BOBe6j3-cMm5mc4Iwativdk,22767
|
|
292
|
+
redis_benchmarks_specification-0.2.11.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
293
|
+
redis_benchmarks_specification-0.2.11.dist-info/entry_points.txt,sha256=x5WBXCZsnDRTZxV7SBGmC65L2k-ygdDOxV8vuKN00Nk,715
|
|
294
|
+
redis_benchmarks_specification-0.2.11.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|