-
Notifications
You must be signed in to change notification settings - Fork 617
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: cluster key rate limit enhancement #1036
Conversation
@@ -51,6 +52,12 @@ limit_keys: | |||
query_per_second: 10 | |||
- key: a6a6d7f2-ba8a-11ec-bec2-00163e1250b5 | |||
query_per_minute: 100 | |||
# 正则表达式,以b开头的所有字符串 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这里会有歧义,是匹配到的所有统一限制1000,还是匹配到的每一个分别限制1000。
所以我建议增加新的配置项: limit_by_per_header, limit_by_per_param
用来表示匹配到的每一个分别限制这一含义。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这里会有歧义,是匹配到的所有统一限制1000,还是匹配到的每一个分别限制1000。
所以我建议增加新的配置项: limit_by_per_header, limit_by_per_param
用来表示匹配到的每一个分别限制这一含义。
好的,那应该就是limit_by_header和limit_by_param只支持精确匹配的,limit_by_per_header和limit_by_per_param只支持正则匹配和*的方式
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
可以的
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
可以的
已调整,目前支持以下几种方式:
limit_by_header、limit_by_param、limit_by_consumer、limit_by_cookie(匹配cookie中的key=value) 支持精准匹配
limit_by_per_ip 支持按照ip和ip段配置
limit_by_peer_header、limit_by_peer_param、limit_by_peer_consumer、limit_by_per_cookie 支持正则匹配和*
| redis | object | 是 | - | redis相关配置 | | ||
| 配置项 | 类型 | 必填 | 默认值 | 说明 | | ||
| ----------------------- | ------ | ---- | ------ |-----------------------------------------------------------------------------------------------------------------------------| | ||
| rule_name | string | 是 | - | 限流规则名称,根据限流类型+限流规则名称+限流key对应的实际值来拼装redis key | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
支持下配置多个rule可以同时生效吧,现有的配置作为rules数组里的配置项
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
支持下配置多个rule可以同时生效吧,现有的配置作为rules数组里的配置项
将limit_by_*(共9种)和limit_keys调整到了rule_items中,拼接redis的key的方式调整为限流规则名称+限流类型+限流key名称+限流key对应的实际值,这样只需要外部配置一个rule_name即可
e3aae23
to
7a9d6e3
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Ⅰ. Describe what this PR did
cluster key rate limit enhancement
1)add limit_type: limit_by_consumer、limit_by_cookie、limit_by_per_header、limit_by_per_param、limit_by_per_consumer、limit_by_per_cookie
2)support batch configuration of rate limiting rules
Ⅱ. Does this pull request fix one issue?
Ⅲ. Why don't you add test cases (unit test/integration test)?
Ⅳ. Describe how to verify it
1)、limit_by_param和limit_by_per_param
wasmplugin.yam:
1)根据第一个apikey进行限流
一分钟内请求三次:
响应头中x-ratelimit-limit为10(限制的总请求数),x-ratelimit-remaining为7(剩余还可以发送的请求数)
2)根据第二个apikey限流
请求三次:
Redis中的数据:

3)正则表达式以b开头的字符串
一分钟内请求三次:
响应头中x-ratelimit-limit为100(限制的总请求数),x-ratelimit-remaining为97(剩余还可以发送的请求数)s
4)*
请求四次:
Redis中的数据:

2)、limit_by_header和limit_by_per_header
wasmplugin.yam:
1)根据第一个请求头进行限流
一分钟内请求三次:
响应头中x-ratelimit-limit为10(限制的总请求数),x-ratelimit-remaining为7(剩余还可以发送的请求数)
2)根据第二个请求头进行限流
请求三次:
Redis中的数据:
3)正则表达式以b开头的字符串
一分钟内请求三次:
响应头中x-ratelimit-limit为100(限制的总请求数),x-ratelimit-remaining为97(剩余还可以发送的请求数)s
4)*
请求三次:
Redis中的数据:
3)、limit_by_cookie和limit_by_per_cookie
wasmplugin.yam:
1)根据第一个cookie进行限流
一分钟内请求三次:
响应头中x-ratelimit-limit为10(限制的总请求数),x-ratelimit-remaining为7(剩余还可以发送的请求数)
触发限流后:
2)根据第二个cookie限流
请求三次:
Redis中的数据:
3)正则表达式以b开头的字符串
一分钟内请求三次:
响应头中x-ratelimit-limit为100(限制的总请求数),x-ratelimit-remaining为97(剩余还可以发送的请求数)
4)*
请求三次:
Redis中的数据:
4)、limit_by_per_ip
wasmplugin.yam:
1)1.1.1.1
连续请求三次:
响应头中x-ratelimit-limit为10(限制的总请求数),x-ratelimit-remaining为7(剩余还可以发送的请求数)
2)1.1.1.0/24
请求三次:
Redis中的数据:

3)0.0.0.0/0
请求三次:
Redis中的数据:

4)、limit_by_consumer和limit_by_per_consumer

Redis中key示例:
Ⅴ. Special notes for reviews