forked from panjf2000/gnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
load_balancer.go
167 lines (139 loc) · 4.37 KB
/
load_balancer.go
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
// Copyright (c) 2019 Andy Pan
//
// 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.
package gnet
import (
"hash/crc32"
"net"
"github.com/panjf2000/gnet/v2/internal/bs"
)
// LoadBalancing represents the type of load-balancing algorithm.
type LoadBalancing int
const (
// RoundRobin assigns the next accepted connection to the event-loop by polling event-loop list.
RoundRobin LoadBalancing = iota
// LeastConnections assigns the next accepted connection to the event-loop that is
// serving the least number of active connections at the current time.
LeastConnections
// SourceAddrHash assigns the next accepted connection to the event-loop by hashing the remote address.
SourceAddrHash
)
type (
// loadBalancer is an interface which manipulates the event-loop set.
loadBalancer interface {
register(*eventloop)
next(net.Addr) *eventloop
iterate(func(int, *eventloop) bool)
len() int
}
// roundRobinLoadBalancer with Round-Robin algorithm.
roundRobinLoadBalancer struct {
nextLoopIndex int
eventLoops []*eventloop
size int
}
// leastConnectionsLoadBalancer with Least-Connections algorithm.
leastConnectionsLoadBalancer struct {
eventLoops []*eventloop
size int
}
// sourceAddrHashLoadBalancer with Hash algorithm.
sourceAddrHashLoadBalancer struct {
eventLoops []*eventloop
size int
}
)
// ==================================== Implementation of Round-Robin load-balancer ====================================
func (lb *roundRobinLoadBalancer) register(el *eventloop) {
el.idx = lb.size
lb.eventLoops = append(lb.eventLoops, el)
lb.size++
}
// next returns the eligible event-loop based on Round-Robin algorithm.
func (lb *roundRobinLoadBalancer) next(_ net.Addr) (el *eventloop) {
el = lb.eventLoops[lb.nextLoopIndex]
if lb.nextLoopIndex++; lb.nextLoopIndex >= lb.size {
lb.nextLoopIndex = 0
}
return
}
func (lb *roundRobinLoadBalancer) iterate(f func(int, *eventloop) bool) {
for i, el := range lb.eventLoops {
if !f(i, el) {
break
}
}
}
func (lb *roundRobinLoadBalancer) len() int {
return lb.size
}
// ================================= Implementation of Least-Connections load-balancer =================================
func (lb *leastConnectionsLoadBalancer) min() (el *eventloop) {
el = lb.eventLoops[0]
minN := el.loadConn()
for _, v := range lb.eventLoops[1:] {
if n := v.loadConn(); n < minN {
minN = n
el = v
}
}
return
}
func (lb *leastConnectionsLoadBalancer) register(el *eventloop) {
el.idx = lb.size
lb.eventLoops = append(lb.eventLoops, el)
lb.size++
}
// next returns the eligible event-loop by taking the root node from minimum heap based on Least-Connections algorithm.
func (lb *leastConnectionsLoadBalancer) next(_ net.Addr) (el *eventloop) {
return lb.min()
}
func (lb *leastConnectionsLoadBalancer) iterate(f func(int, *eventloop) bool) {
for i, el := range lb.eventLoops {
if !f(i, el) {
break
}
}
}
func (lb *leastConnectionsLoadBalancer) len() int {
return lb.size
}
// ======================================= Implementation of Hash load-balancer ========================================
func (lb *sourceAddrHashLoadBalancer) register(el *eventloop) {
el.idx = lb.size
lb.eventLoops = append(lb.eventLoops, el)
lb.size++
}
// hash converts a string to a unique hash code.
func (*sourceAddrHashLoadBalancer) hash(s string) int {
v := int(crc32.ChecksumIEEE(bs.StringToBytes(s)))
if v >= 0 {
return v
}
return -v
}
// next returns the eligible event-loop by taking the remainder of a hash code as the index of event-loop list.
func (lb *sourceAddrHashLoadBalancer) next(netAddr net.Addr) *eventloop {
hashCode := lb.hash(netAddr.String())
return lb.eventLoops[hashCode%lb.size]
}
func (lb *sourceAddrHashLoadBalancer) iterate(f func(int, *eventloop) bool) {
for i, el := range lb.eventLoops {
if !f(i, el) {
break
}
}
}
func (lb *sourceAddrHashLoadBalancer) len() int {
return lb.size
}