为什么在 Nginx 中使用 return 指令时速率限制不起作用?

Why does rate limit not working when using with return directive in Nginx?

我有以下 nginx 配置:

worker_processes 1;
error_log logs/error.log;
events {
   worker_connections 1024;
}
http {
   limit_req_zone $request_uri zone=by_uri_6000:10m rate=6000r/s;

   server {
      listen 80;
      server_name "openresty.com";

      location = /limit-6000 {
         limit_req zone=by_uri_6000 nodelay;
         return 200 "ok"
      }
   }
}

但是在使用 wrk 进行测试时它根本不起作用:

wrk -c100 -t10 -d5s http://localhost/limit-6000
Running 5s test @ http://localhost/
  10 threads and 100 connections
  Thread Stats   Avg      Stdev     Max   +/- Stdev
    Latency     5.57ms    1.65ms  23.47ms   81.17%
    Req/Sec     1.81k   495.91     9.27k    99.60%
  90400 requests in 5.10s, 17.93MB read
Requests/sec:  17713.29
Transfer/sec:      3.51MB

但是,如果我将配置更改为如下所示(实际上我使用的是 openresty):

      location = /limit-6000 {
         limit_req zone=by_uri_6000 nodelay;
         default_type 'application/json';
         content_by_lua_block {
             ngx.say('{"code": 0, "msg": "成功"}')
         }

然后就可以了,请问是什么原因,我在官方文档中没有看到任何解释。

nginx return 指令在重写阶段工作,它立即 return 结果。

我相信 ngx_http_limit_req_module 在访问阶段有效。所以使用 return 指令 ngx_http_limit_req_module 没有任何机会进入游戏。