serverless

serverless-pre-function 插件会在指定阶段开始时运行,serverless-post-function 插件会在指定阶段结束时运行。这两个插件使用相同的属性。

重要

此处仅接受函数,不接受其他类型的 Lua 代码。

比如匿名函数是合法的:

  1. local count = 1
  2. return function()
  3. count = count + 1
  4. ngx.say(count)
  5. end

但不是函数类型的代码就是非法的:

serverless - 图2注意

v2.6 版本开始,confctx 作为前两个参数传递给 serverless 函数。

v2.12.0 版本之前,before_proxy 阶段曾被称作 balancer。考虑到这一方法是在 access 阶段之后、请求到上游之前运行,并且与 没有关联,因此已经更新为 before_proxy

  1. curl http://127.0.0.1:9180/apisix/admin/routes/1 \
  2. -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT -d '
  3. "uri": "/index.html",
  4. "plugins": {
  5. "serverless-pre-function": {
  6. "phase": "rewrite",
  7. "functions" : ["return function() ngx.log(ngx.ERR, \"serverless pre function\"); end"]
  8. },
  9. "serverless-post-function": {
  10. "phase": "rewrite",
  11. "functions" : ["return function(conf, ctx) ngx.log(ngx.ERR, \"match uri \", ctx.curr_req_matched and ctx.curr_req_matched._path); end"]
  12. }
  13. },
  14. "upstream": {
  15. "type": "roundrobin",
  16. }
  17. }
  18. }'

你可以通过以下命令向 APISIX 发出请求:

如果你在 ./logs/error.log 中发现 serverless pre functionmatch uri /index.html 两个 error 级别的日志,表示指定的函数已经生效。

当你需要禁用该插件时,可以通过如下命令删除相应的 JSON 配置,APISIX 将会自动重新加载相关配置,无需重启服务:

  1. curl http://127.0.0.1:9180/apisix/admin/routes/1 \
  2. -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT -d '
  3. {
  4. "methods": ["GET"],
  5. "uri": "/index.html",
  6. "upstream": {
  7. "type": "roundrobin",
  8. "nodes": {
  9. "127.0.0.1:1980": 1
  10. }