我正在为kong
编写自定义插件。该插件将根据我的服务器转换请求/响应。我正在获取[info] 27#0: *588 client <x> closed keepalive connection
。
经过一些调试后,我发现只要设置ngx.arg[1]
以及我转换后的回复。我遵循了kong提供的现有response-transformer
插件。
这是kong
body_filter
函数的主体:
local ctx = ngx.ctx
local chunk, eof = ngx.arg[1], ngx.arg[2]
ctx.rt_body_chunks = ctx.rt_body_chunks or {}
ctx.rt_body_chunk_number = ctx.rt_body_chunk_number or 1
if eof then
local someChunks = concat(ctx.rt_body_chunks)
local aBody = responseTransformer.transform(theConf, someChunks)
aBody = unEscapeString(aBody)
ngx.arg[1] = aBody or someChunks
else
ctx.rt_body_chunks[ctx.rt_body_chunk_number] = chunk
ctx.rt_body_chunk_number = ctx.rt_body_chunk_number + 1
ngx.arg[1] = nil
end
我在本地虚拟服务器上运行了相同的插件。它工作正常。但是当代理到实际服务器时,出现了
closed keepalive connection
错误。从kong日志中,我可以看到响应已正确转换。
使用
curl
,我得到了响应正文的一半。 最佳答案
找到了原因。服务器正在发送Content-Length
标头。在重写正文期间,此保持不变。因此,在交付完整内容之前,已关闭连接。
为了解决这个问题,我必须清除Content-Length
函数中的header_filter
标头:kong.response.clear_header("Content-Length")
关于keep-alive - Kong:客户关闭保持事件连接,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56731106/