你們能夠本身按照上一講講解的內容,基於OpenResty在另外兩臺機器上都部署一下nginx+lua的開發環境nginx
我已經在eshop-cache02和eshop-cache03上都部署好了git
我這邊的話呢,是打算用eshop-cache01和eshop-cache02做爲應用層nginx服務器,用eshop-cache03做爲分發層nginxgithub
在eshop-cache03,也就是分發層nginx中,編寫lua腳本,完成基於商品id的流量分發策略後端
固然了,咱們這裏主要會簡化策略,簡化業務邏輯,實際上在你的公司中,你能夠隨意根據本身的業務邏輯和場景,去制定本身的流量分發策略服務器
一、獲取請求參數,好比productId
二、對productId進行hash
三、hash值對應用服務器數量取模,獲取到一個應用服務器
四、利用http發送請求到應用層nginx
五、獲取響應後返回測試
這個就是基於商品id的定向流量分發的策略,lua腳原本編寫和實現ui
咱們做爲一個流量分發的nginx,會發送http請求到後端的應用nginx上面去,因此要先引入lua http lib包lua
cd /usr/hello/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.luarest
keepalive=false,必需要加,否則會報錯
代碼:server
local uri_args = ngx.req.get_uri_args()
local productId = uri_args["productId"]
local host = {"192.168.31.19", "192.168.31.187"}
local hash = ngx.crc32_long(productId)
hash = (hash % 2) + 1
backend = "http://"..host[hash]
local method = uri_args["method"]
local requestBody = "/"..method.."?productId="..productId
local http = require("resty.http")
local httpc = http.new()
local resp, err = httpc:request_uri(backend, {
method = "GET",
path = requestBody,
keepalive=false
})
if not resp then
ngx.say("request error :", err)
return
end
ngx.say(resp.body)
httpc:close()
/usr/servers/nginx/sbin/nginx -s reload
http://192.168.194.133/hello?requestPath=hello&productId=1
基於商品id的定向流量分發策略的lua腳本就開發完了,並且也測試過了
咱們就能夠看到,若是你請求的是固定的某一個商品,那麼就必定會將流量打到固定的一個應用nginx上面去