27 “分发层 + 应用层” 双层nginx 架构 之 分发层

上一篇 “分发层 + 应用层” 双层nginx 架构 之 应用层, 主要讲解了基于openResty部署 nginx 应用层,本篇继续上一篇话题,如何提高nginx 缓存命中率?

分发层nginx 安装部署 按照上一篇即可,本篇主要讲解如何利用 nginx + lua 为请求提供路由分发,以提高命中率。

注:本篇之前需要部署两套 应用层 nginx (192.168.0.16,192.18.0.17) + 一套 分发层nginx (192.168.0.18),同时分发层基于商品id的流量分发策略(这里简化了分发策略,您可以根据自身公司业务或场景去设计自己的流量分发策略)

以下操作均在分发层 nginx (192.168.0.18)

基于商品id 流量分发策略逻辑

  • 获取请求参数,比如productId
  • 对productId进行hash
  • hash值对应用服务器数量取模,获取到一个应用服务器nginx
  • 利用http发送请求到应用层nginx
  • 获取响应后返回

引入 lua http lib 依赖

lua 需要做 http 路由转发,故需要依赖lua http

   cd /usr/local/test/lualib/resty
   wget https://raw.githubusercontent.com/pintsized/lua-resty-http/master/lib/resty/http_headers.lua  
   wget https://raw.githubusercontent.com/pintsized/lua-resty-http/master/lib/resty/http.lua

编写流量分发策略逻辑代码

vim /usr/local/test/lua/test.lua

逻辑代码如下:

// 获取url 参数
local uri_args = ngx.req.get_uri_args()
// 获取商品、店铺id
local productId = uri_args["productId"]
local shopId = uri_args["shopId"]
// 定义应用层nginx 服务器
local hosts = {"192.168.0.16", "192.168.0.17"}
// 通过crc32_long 算法对商品 id 进行hash
local hash = ngx.crc32_long(productId)
// hash 对应用服务器数量取模,得到应用服务器索引下标
hash = (hash % 2) + 1  
//  拼接后台服务器 http url,.. 表示字符串连接符
backend = "http://"..hosts[hash]
// 获取请求url 或者 方法 reqUrl
local reqUrl = uri_args["reqUrl"]
// 拼接方法及请求参数
reqUrl  = "/"..reqUrl.."?productId="..productId.."&shopId="..shopId
// 获取 http 
local http = require("resty.http")  
// 创建 http 连接
local httpc = http.new()  
// 发送 http 请求
local resp, err = httpc:request_uri(backend, {  
    method = "GET",  
    path = reqUrl 
})
// 错误异常处理
if not resp then  
    ngx.say("request error :", err)  
    return  
end
// 请求响应回写
ngx.say(resp.body)  
// 关闭 http 连接句柄
httpc:close() 
27 “分发层 + 应用层” 双层nginx 架构 之 分发层_第1张图片
流量分发策略逻辑代码

nginx 校验 及 重载

/usr/local/servers/nginx/sbin/nginx -t && /usr/local/servers/nginx/sbin/nginx -s reload

验证分发层 nginx

浏览器访问 》 http://192.168.0.18/test?reqUrl=test&productId=1&shopId=1

第一次 productId = 1
第二次 productId = 1
第三次 productId = 1

浏览器访问 》 http://192.168.0.18/test?reqUrl=test&productId=4&shopId=1

第一次 productId = 4

这里就不继续测试了,大家可以自行测试。

总结:相同商品id 的请求都路由到了相同的应用层nginx 服务器,因此nginx 缓存低下的问题自然就解决了

以上就是本章内容,如有不对的地方,请多多指教,谢谢!

为了方便有需要的人,本系列全部软件都在 https://pan.baidu.com/s/1qYsJZfY

下章预告:主要讲解 “分发层 + 应用层” 双层nginx 架构 之 应用层实现

作者:逐暗者 (转载请注明出处)

你可能感兴趣的:(27 “分发层 + 应用层” 双层nginx 架构 之 分发层)