limit-req
#
描述limit-req
插件使用 leaky bucket 算法来限制请求的数量并允许节流。
#
属性名称 | 类型 | 必选项 | 默认值 | 有效值 | 描述 |
---|---|---|---|---|---|
rate | integer | True | > 0 | 每秒允许的最大请求数。超过速率且低于突发的请求将被延迟。 | |
bust | integer | True | >= 0 | 每秒允许延迟的请求数,以进行限制。超过速率和突发的请求将被拒绝。 | |
key_type | string | 否 | var | ["var","var_combination"] | key 的类型。如果 key_type 为 var ,则 key 将被解释为变量。如果 key_type 为 var_combination ,则 key 将被解释为变量的组合。 |
key | string | 否 | remote_addr | 用于计数请求的 key。如果 key_type 为 var ,则 key 将被解释为变量。变量不需要以美元符号($ )为前缀。如果 key_type 为 var_combination ,则 key 会被解释为变量的组合。所有变量都应该以美元符号 ($ ) 为前缀。例如,要配置 key 使用两个请求头 custom-a 和 custom-b 的组合,则 key 应该配置为 $http_custom_a $http_custom_b 。如果 key_type 为 constant ,则 key 会被解释为常量值。 | |
rejection_code | integer | 否 | 503 | [200,...,599] | 请求因超出阈值而被拒绝时返回的 HTTP 状态代码。 |
rejection_msg | string | 否 | 非空 | 请求因超出阈值而被拒绝时返回的响应主体。 | |
nodelay | boolean | 否 | false | 如果为 true,则不要延迟突发阈值内的请求。 | |
allow_degradation | boolean | 否 | false | 如果为 true,则允许 APISIX 在插件或其依赖项不可用时继续处理没有插件的请求。 | |
policy | string | 否 | local | ["local","redis","redis-cluster"] | 速率限制计数器的策略。如果是 local ,则计数器存储在本地内存中。如果是 redis ,则计数器存储在 Redis 实例上。如果是 redis-cluster ,则计数器存储在 Redis 集群中。 |
allow_degradation | boolean | 否 | false | 如果为 true,则允许 APISIX 在插件或其依赖项不可用时继续处理没有插件的请求。 | |
show_limit_quota_header | boolean | 否 | true | 如果为 true,则在响应标头中包含 X-RateLimit-Limit 以显示总配额和 X-RateLimit-Remaining 以显示剩余配额。 | |
redis_host | string | 否 | Redis 节点的地址。当 policy 为 redis 时必填。 | ||
redis_port | integer | 否 | 6379 | [1,...] | 当 policy 为 redis 时,Redis 节点的端口。 |
redis_username | string | 否 | 如果使用 Redis ACL,则为 Redis 的用户名。如果使用旧式身份验证方法 requirepass ,则仅配置 redis_password 。当 policy 为 redis 时使用。 | ||
redis_password | string | 否 | 当 policy 为 redis 或 redis-cluster 时,Redis 节点的密码。 | ||
redis_ssl | boolean | 否 | false | 如果为 true,则在 policy 为 redis 时使用 SSL 连接到 Redis 集群。 | |
redis_ssl_verify | boolean | 否 | false | 如果为 true,则在 policy 为 redis 时验证服务器 SSL 证书。 | |
redis_database | integer | 否 | 0 | >= 0 | 当 policy 为 redis 时,Redis 中的数据库编号。 |
redis_timeout | integer | 否 | 1000 | [1,...] | 当 policy 为 redis 或 redis-cluster 时,Redis 超时值(以毫秒为单位)。 |
redis_cluster_nodes | array[string] | 否 | 具有至少两个地址的 Redis 群集节点列表。当 policy 为 redis-cluster 时必填。 | ||
redis_cluster_name | string | 否 | |||
redis_cluster_ssl | boolean | 否 | false | 如果为 true ,当 policy 为 redis-cluster 时,使用 SSL 连接 Redis 集群。 | |
redis_cluster_ssl_verify | boolean | 否 | false | 如果为 true ,当 policy 为 redis-cluster 时,验证服务器 SSL 证书。 |
#
示例以下示例演示了如何在不同场景中配置 limit-req
。
note
您可以这样从 config.yaml
中获取 admin_key
并存入环境变量:
admin_key=$(yq '.deployment.admin.admin_key[0].key' conf/config.yaml | sed 's/"//g')
#
通过远程地址应用速率限制以下示例演示了通过单个变量 remote_addr
对 HTTP 请求进行速率限制。
使用 limit-req
插件创建允许每个远程地址 1 QPS 的路由:
curl "http://127.0.0.1:9180/apisix/admin/routes" -X PUT \
-H "X-API-KEY: ${admin_key}" \
-d '
{
"id": "limit-req-route",
"uri": "/get",
"plugins": {
"limit-req": {
"rate": 1,
"burst": 0,
"key": "remote_addr",
"key_type": "var",
"rejected_code": 429,
"nodelay": true
}
},
"upstream": {
"type": "roundrobin",
"nodes": {
"httpbin.org:80": 1
}
}
}'
发送请求以验证:
curl -i "http://127.0.0.1:9080/get"
您应该会看到一个 HTTP/1.1 200 OK
响应。
该请求已消耗了时间窗口允许的所有配额。如果您在同一秒内再次发送请求,您应该会收到 HTTP/1.1 429 Too Many Requests
响应,表示请求超出了配额阈值。
#
允许速率限制阈值以下示例演示了如何配置 burst
以允许速率限制阈值超出配置的值并实现请求限制。您还将看到与未实施限制时的比较。
使用 limit-req
插件创建一个路由,允许每个远程地址 1 QPS,并将 burst
设置为 1,以允许 1 个超过 rate
的请求延迟处理:
curl "http://127.0.0.1:9180/apisix/admin/routes" -X PUT \
-H "X-API-KEY: ${admin_key}" \
-d '{
"id": "limit-req-route",
"uri": "/get",
"plugins": {
"limit-req": {
"rate": 1,
"burst": 1,
"key": "remote_addr",
"rejected_code": 429
}
},
"upstream": {
"type": "roundrobin",
"nodes": {
"httpbin.org:80": 1
}
}
}'
生成三个对路由的请求:
resp=$(seq 3 | xargs -I{} curl -i "http://127.0.0.1:9080/get" -o /dev/null -s -w "%{http_code}\n") && \
count_200=$(echo "$resp" | grep "200" | wc -l) && \
count_429=$(echo "$resp" | grep "429" | wc -l) && \
echo "200 responses: $count_200 ; 429 responses: $count_429"
您可能会看到所有三个请求都成功:
200 responses: 3 ; 429 responses: 0
现在,将 burst
更新为 0 或将 nodelay
设置为 true
,如下所示:
curl "http://127.0.0.1:9180/apisix/admin/routes/limit-req-route" -X PATCH \
-H "X-API-KEY: ${admin_key}" \
-d '{
"plugins": {
"limit-req": {
"nodelay": true
}
}
}'
再次向路由生成三个请求:
resp=$(seq 3 | xargs -I{} curl -i "http://127.0.0.1:9080/get" -o /dev/null -s -w "%{http_code}\n") && \
count_200=$(echo "$resp" | grep "200" | wc -l) && \
count_429=$(echo "$resp" | grep "429" | wc -l) && \
echo "200 responses: $count_200 ; 429 responses: $count_429"
您应该会看到类似以下内容的响应,表明超出速率的请求已被拒绝:
200 responses: 1 ; 429 responses: 2
#
通过远程地址和消费者名称应用速率限制以下示例演示了通过变量组合 remote_addr
和 consumer_name
来限制请求的速率。
使用 limit-req
插件创建一个路由,允许每个远程地址和每个消费者 有 1 QPS。
创建消费者 john
:
curl "http://127.0.0.1:9180/apisix/admin/consumers" -X PUT \
-H "X-API-KEY: ${admin_key}" \
-d '{
"username": "john"
}'
为消费者创建 key-auth
凭证:
curl "http://127.0.0.1:9180/apisix/admin/consumers/john/credentials" -X PUT \
-H "X-API-KEY: ${admin_key}" \
-d '{
"id": "cred-john-key-auth",
"plugins": {
"key-auth": {
"key": "john-key"
}
}
}'
创建第二个消费者 jane
:
curl "http://127.0.0.1:9180/apisix/admin/consumers" -X PUT \
-H "X-API-KEY: ${admin_key}" \
-d '{
"username": "jane"
}'
为消费者创建 key-auth
凭证:
curl "http://127.0.0.1:9180/apisix/admin/consumers/jane/credentials" -X PUT \
-H "X-API-KEY: ${admin_key}" \
-d '{
"id": "cred-jane-key-auth",
"plugins": {
"key-auth": {
"key": "jane-key"
}
}
}'
创建一个带有 key-auth
和 limit-req
插件的路由,并在 limit-req
插件中指定使用变量组合作为速率限制 key:
curl "http://127.0.0.1:9180/apisix/admin/routes" -X PUT \
-H "X-API-KEY: ${admin_key}" \
-d '{
"id": "limit-req-route",
"uri": "/get",
"plugins": {
"key-auth": {},
"limit-req": {
"rate": 1,
"burst": 0,
"key": "$remote_addr $consumer_name",
"key_type": "var_combination",
"rejected_code": 429
}
},
"upstream": {
"type": "roundrobin",
"nodes": {
"httpbin.org:80": 1
}
}
}'
同时发送两个请求,每个请求针对一个消费者:
curl -i "http://127.0.0.1:9080/get" -H 'apikey: jane-key' & \
curl -i "http://127.0.0.1:9080/get" -H 'apikey: john-key' &
您应该会收到两个请求的 HTTP/1.1 200 OK
,表明请求未超过每个消费者的阈值。
如果您在同一秒内以任一消费者身份发送更多请求,应该会收到 HTTP/1.1 429 Too Many Requests
响应。
这验证了插件速率限制是通过变量 remote_addr
和 consumer_name
的来实现的。