summaryrefslogtreecommitdiffstats
path: root/openresty-ext/src/assembly/resources/openresty/nginx/luaext/loadbalance/balancer.lua
blob: 48dc1d80cddfe4d3819009cda6c9141f952e5220 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
--[[

    Copyright (C) 2016 ZTE, Inc. and others. All rights reserved. (ZTE)

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

            http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.

--]]

local b = require "ngx.balancer"
local baseupstream = require "loadbalance.baseupstream"
local log_util  =  require('lib.utils.log_util')
local error_handler  =  require('lib.utils.error_handler')

local log = log_util.log
local ngx_ctx = ngx.ctx
local servers = ngx_ctx.backservers
local svc_key = ngx_ctx.svc_key
local error_svc_not_found = error_handler.svc_not_found

local status = b.get_last_failure()
if status == nil then
	--only reset the server status table of the service in the first attempt
	baseupstream.check_and_reset_srv_status_ifneed(svc_key,servers)
elseif status == "failed" then
	local last_peer = ngx.ctx.last_peer
	--mark the srv failed one time
	baseupstream.mark_srv_failed(svc_key,last_peer)
end

local server,err = baseupstream.get_backserver(svc_key,servers)
if server == nil then 
	ngx.log(ngx.WARN, ngx.var.request_id.." ".."No active backend server found! detail_info: key--"..svc_key.." "..(err or ""))
	return
end
if baseupstream.can_retry(svc_key,servers) then
	b.set_more_tries(1)
end
b.set_current_peer(server["ip"],server["port"])
--log("upstreamserver",server["ip"]..":"..server["port"])
ngx.ctx.last_peer = { ip=server["ip"], port=server["port"] }