Apisix自定义httpcode 重试
Apisix 自定义httpcode请求重试
我们通过插件来做比较麻烦并且还需要考虑重新lb的问题,有一个比较简单的方法是利用nginx的请求重试信号。
Apisix本身默认也有该种设定,不过默认只针对 timeout情况会请求重试
默认请求重试次数是:updateam node 节点数量 -1
相关逻辑在 https://github.com/apache/apisix/blob/master/apisix/balancer.lua#L142C16-L142C33 的 `set_balancer_opts` 方法中
设置请求重试:
https://github.com/apache/apisix/blob/master/apisix/cli/ngx_tpl.lua#L760
我们可以在760行左右添加
`proxy_next_upstream error timeout http_500 http_429 non_idempotent;`
支持的httpcode 和 含义 可以看nginx官方文档
https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_next_upstream
我们通过插件来做比较麻烦并且还需要考虑重新lb的问题,有一个比较简单的方法是利用nginx的请求重试信号。
Apisix本身默认也有该种设定,不过默认只针对 timeout情况会请求重试
默认请求重试次数是:updateam node 节点数量 -1
相关逻辑在 https://github.com/apache/apisix/blob/master/apisix/balancer.lua#L142C16-L142C33 的 `set_balancer_opts` 方法中
设置请求重试:
https://github.com/apache/apisix/blob/master/apisix/cli/ngx_tpl.lua#L760
我们可以在760行左右添加
`proxy_next_upstream error timeout http_500 http_429 non_idempotent;`
支持的httpcode 和 含义 可以看nginx官方文档
https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_next_upstream
全部评论
相关推荐
点赞 评论 收藏
分享
小马桶出版社:好自卑一个人,只能靠劝退别人给自己换机会。我求他别去华子,跟这种人做同事胆战心惊的
点赞 评论 收藏
分享