mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-06 14:47:35 +03:00
Prepare support for multiple load balancing strategies
This commit is contained in:
parent
f319088506
commit
88434fc39f
3 changed files with 30 additions and 2 deletions
|
@ -35,7 +35,7 @@ func main() {
|
||||||
svc = nil
|
svc = nil
|
||||||
dlog.Debug(err)
|
dlog.Debug(err)
|
||||||
}
|
}
|
||||||
app.proxy = Proxy{}
|
app.proxy = NewProxy()
|
||||||
app.proxy.xTransport = NewXTransport(30 * time.Second)
|
app.proxy.xTransport = NewXTransport(30 * time.Second)
|
||||||
|
|
||||||
if err := ConfigLoad(&app.proxy, svcFlag); err != nil {
|
if err := ConfigLoad(&app.proxy, svcFlag); err != nil {
|
||||||
|
|
|
@ -352,3 +352,9 @@ func ttlFromHTTPResponse(proxy *Proxy, resp *http.Response) *uint32 {
|
||||||
}
|
}
|
||||||
return &foundTTL
|
return &foundTTL
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func NewProxy() Proxy {
|
||||||
|
return Proxy{
|
||||||
|
serversInfo: ServersInfo{lbStrategy: DefaultLBStrategy},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -56,10 +56,23 @@ type ServerInfo struct {
|
||||||
initialRtt int
|
initialRtt int
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type LBStrategy int
|
||||||
|
|
||||||
|
const (
|
||||||
|
LBStrategyNone = LBStrategy(iota)
|
||||||
|
LBStrategyP2
|
||||||
|
LBStrategyPH
|
||||||
|
LBStrategyFastest
|
||||||
|
LBStrategyRandom
|
||||||
|
)
|
||||||
|
|
||||||
|
const DefaultLBStrategy = LBStrategyP2
|
||||||
|
|
||||||
type ServersInfo struct {
|
type ServersInfo struct {
|
||||||
sync.RWMutex
|
sync.RWMutex
|
||||||
inner []ServerInfo
|
inner []ServerInfo
|
||||||
registeredServers []RegisteredServer
|
registeredServers []RegisteredServer
|
||||||
|
lbStrategy LBStrategy
|
||||||
}
|
}
|
||||||
|
|
||||||
func (serversInfo *ServersInfo) registerServer(proxy *Proxy, name string, stamp ServerStamp) error {
|
func (serversInfo *ServersInfo) registerServer(proxy *Proxy, name string, stamp ServerStamp) error {
|
||||||
|
@ -155,7 +168,16 @@ func (serversInfo *ServersInfo) getOne() *ServerInfo {
|
||||||
if serversInfo.inner[candidate].rtt.Value() < serversInfo.inner[0].rtt.Value() {
|
if serversInfo.inner[candidate].rtt.Value() < serversInfo.inner[0].rtt.Value() {
|
||||||
serversInfo.inner[candidate], serversInfo.inner[0] = serversInfo.inner[0], serversInfo.inner[candidate]
|
serversInfo.inner[candidate], serversInfo.inner[0] = serversInfo.inner[0], serversInfo.inner[candidate]
|
||||||
}
|
}
|
||||||
candidate = rand.Intn(Max(Min(serversCount, 2), len(serversInfo.inner)))
|
switch serversInfo.lbStrategy {
|
||||||
|
case LBStrategyFastest:
|
||||||
|
candidate = 0
|
||||||
|
case LBStrategyPH:
|
||||||
|
candidate = rand.Intn(Min(Min(serversCount, 2), len(serversInfo.inner)/2))
|
||||||
|
case LBStrategyRandom:
|
||||||
|
candidate = rand.Intn(len(serversInfo.inner))
|
||||||
|
default:
|
||||||
|
candidate = rand.Intn(Min(Min(serversCount, 2), len(serversInfo.inner)))
|
||||||
|
}
|
||||||
serverInfo := &serversInfo.inner[candidate]
|
serverInfo := &serversInfo.inner[candidate]
|
||||||
return serverInfo
|
return serverInfo
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue