serverless
Both Plugins have the same attributes.
IMPORTANT
Only Lua functions are allowed here and not other Lua code.
For example, anonymous functions are legal:
local count = 1
return function()
count = count + 1
ngx.say(count)
end
But code other than functions are illegal:
note
From v2.6, conf
and ctx
are passed as the first two arguments to a serverless function like regular Plugins.
Prior to v2.12.0, the phase before_proxy
was called balancer
. This was updated considering that this method would run after access
and before the request goes Upstream and is unrelated to balancer
.
curl http://127.0.0.1:9180/apisix/admin/routes/1 -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT -d '
"uri": "/index.html",
"plugins": {
"serverless-pre-function": {
"phase": "rewrite",
"functions" : ["return function() ngx.log(ngx.ERR, \"serverless pre function\"); end"]
},
"serverless-post-function": {
"phase": "rewrite",
"functions" : ["return function(conf, ctx) ngx.log(ngx.ERR, \"match uri \", ctx.curr_req_matched and ctx.curr_req_matched._path); end"]
}
},
"upstream": {
"type": "roundrobin",
}
}
}'
Once you have configured the Plugin as shown above, you can make a request as shown below:
You will find a message “serverless pre-function” and “match uri /index.html” in the error.log.
To disable the serverless
Plugin, you can delete the corresponding JSON configuration from the Plugin configuration. APISIX will automatically reload and you do not have to restart for this to take effect.
curl http://127.0.0.1:9180/apisix/admin/routes/1 -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT -d '
{
"methods": ["GET"],
"uri": "/index.html",
"upstream": {
"type": "roundrobin",
"nodes": {
"127.0.0.1:1980": 1
}