forked from serialx/hashring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hashring.go
378 lines (328 loc) · 8.91 KB
/
hashring.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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
package hashring
import (
"crypto/md5"
"fmt"
"sort"
"strconv"
)
var defaultHashFunc = func() HashFunc {
hashFunc, err := NewHash(md5.New).Use(NewInt64PairHashKey)
if err != nil {
panic(fmt.Sprintf("failed to create defaultHashFunc: %s", err.Error()))
}
return hashFunc
}()
type HashKey interface {
Less(other HashKey) int64
}
type HashKeyOrder []HashKey
func (h HashKeyOrder) Len() int { return len(h) }
func (h HashKeyOrder) Swap(i, j int) { h[i], h[j] = h[j], h[i] }
func (h HashKeyOrder) Less(i, j int) bool {
return h[i].Less(h[j]) < 0
}
type HashFunc func([]byte) HashKey
type HashRing struct {
ring map[HashKey]string
sortedKeys []HashKey
nodes []string
weights map[string]int
hashFunc HashFunc
}
type Uint32HashKey uint32
func (k Uint32HashKey) Less(other HashKey) int64 {
return int64(k) - int64(other.(Uint32HashKey))
}
func New(nodes []string) *HashRing {
return NewWithHash(nodes, defaultHashFunc)
}
func NewWithHash(
nodes []string,
hashKey HashFunc,
) *HashRing {
hashRing := &HashRing{
ring: make(map[HashKey]string),
sortedKeys: make([]HashKey, 0),
nodes: nodes,
weights: make(map[string]int),
hashFunc: hashKey,
}
hashRing.generateCircle()
return hashRing
}
func NewWithWeights(weights map[string]int) *HashRing {
return NewWithHashAndWeights(weights, defaultHashFunc)
}
func NewWithHashAndWeights(
weights map[string]int,
hashFunc HashFunc,
) *HashRing {
nodes := make([]string, 0, len(weights))
for node := range weights {
nodes = append(nodes, node)
}
hashRing := &HashRing{
ring: make(map[HashKey]string),
sortedKeys: make([]HashKey, 0),
nodes: nodes,
weights: weights,
hashFunc: hashFunc,
}
hashRing.generateCircle()
return hashRing
}
func (h *HashRing) Size() int {
return len(h.nodes)
}
func (h *HashRing) UpdateWithWeights(weights map[string]int) {
nodesChgFlg := false
if len(weights) != len(h.weights) {
nodesChgFlg = true
} else {
for node, newWeight := range weights {
oldWeight, ok := h.weights[node]
if !ok || oldWeight != newWeight {
nodesChgFlg = true
break
}
}
}
if nodesChgFlg {
newhring := NewWithHashAndWeights(weights, h.hashFunc)
h.weights = newhring.weights
h.nodes = newhring.nodes
h.ring = newhring.ring
h.sortedKeys = newhring.sortedKeys
}
}
func (h *HashRing) generateCircle() {
totalWeight := 0
for _, node := range h.nodes {
if weight, ok := h.weights[node]; ok {
totalWeight += weight
} else {
totalWeight += 1
h.weights[node] = 1
}
}
for _, node := range h.nodes {
weight := h.weights[node]
for j := 0; j < weight; j++ {
nodeKey := node + "-" + strconv.FormatInt(int64(j), 10)
key := h.hashFunc([]byte(nodeKey))
h.ring[key] = node
h.sortedKeys = append(h.sortedKeys, key)
}
}
sort.Sort(HashKeyOrder(h.sortedKeys))
}
func (h *HashRing) GetNode(stringKey string) (node string, ok bool) {
pos, ok := h.GetNodePos(stringKey)
if !ok {
return "", false
}
return h.ring[h.sortedKeys[pos]], true
}
func (h *HashRing) GetNodePos(stringKey string) (pos int, ok bool) {
if len(h.ring) == 0 {
return 0, false
}
key := h.GenKey(stringKey)
nodes := h.sortedKeys
pos = sort.Search(len(nodes), func(i int) bool { return key.Less(nodes[i]) < 0 })
if pos == len(nodes) {
// Wrap the search, should return First node
return 0, true
} else {
return pos, true
}
}
func (h *HashRing) GenKey(key string) HashKey {
return h.hashFunc([]byte(key))
}
// GetNodes iterates over the hash ring and returns the nodes in the order
// which is determined by the key. GetNodes is thread safe if the hash
// which was used to configure the hash ring is thread safe.
func (h *HashRing) GetNodes(stringKey string, size int) (nodes []string, ok bool) {
pos, ok := h.GetNodePos(stringKey)
if !ok {
return nil, false
}
if size > len(h.nodes) {
return nil, false
}
returnedValues := make(map[string]bool, size)
//mergedSortedKeys := append(h.sortedKeys[pos:], h.sortedKeys[:pos]...)
resultSlice := make([]string, 0, size)
for i := pos; i < pos+len(h.sortedKeys); i++ {
key := h.sortedKeys[i%len(h.sortedKeys)]
val := h.ring[key]
if !returnedValues[val] {
returnedValues[val] = true
resultSlice = append(resultSlice, val)
}
if len(returnedValues) == size {
break
}
}
return resultSlice, len(resultSlice) == size
}
func (h *HashRing) AddNode(node string) *HashRing {
return h.AddWeightedNode(node, 1)
}
func (h *HashRing) AddWeightedNode(node string, weight int) *HashRing {
if weight <= 0 {
return h
}
if _, ok := h.weights[node]; ok {
return h
}
nodes := make([]string, len(h.nodes), len(h.nodes)+1)
copy(nodes, h.nodes)
nodes = append(nodes, node)
weights := make(map[string]int)
for eNode, eWeight := range h.weights {
weights[eNode] = eWeight
}
weights[node] = weight
hashRing := &HashRing{
ring: make(map[HashKey]string),
sortedKeys: make([]HashKey, 0),
nodes: nodes,
weights: weights,
hashFunc: h.hashFunc,
}
hashRing.generateCircle()
return hashRing
}
func (h *HashRing) UpdateWeightedNode(node string, weight int) *HashRing {
if weight <= 0 {
return h
}
/* node is not need to update for node is not existed or weight is not changed */
if oldWeight, ok := h.weights[node]; (!ok) || (ok && oldWeight == weight) {
return h
}
nodes := make([]string, len(h.nodes))
copy(nodes, h.nodes)
weights := make(map[string]int)
for eNode, eWeight := range h.weights {
weights[eNode] = eWeight
}
weights[node] = weight
hashRing := &HashRing{
ring: make(map[HashKey]string),
sortedKeys: make([]HashKey, 0),
nodes: nodes,
weights: weights,
hashFunc: h.hashFunc,
}
hashRing.generateCircle()
return hashRing
}
func (h *HashRing) RemoveNode(node string) *HashRing {
/* if node isn't exist in hashring, don't refresh hashring */
if _, ok := h.weights[node]; !ok {
return h
}
nodes := make([]string, 0)
for _, eNode := range h.nodes {
if eNode != node {
nodes = append(nodes, eNode)
}
}
weights := make(map[string]int)
for eNode, eWeight := range h.weights {
if eNode != node {
weights[eNode] = eWeight
}
}
hashRing := &HashRing{
ring: make(map[HashKey]string),
sortedKeys: make([]HashKey, 0),
nodes: nodes,
weights: weights,
hashFunc: h.hashFunc,
}
hashRing.generateCircle()
return hashRing
}
// When changing or adding `node` with weight, calculate the impact on the ring.
// The response will be any existing nodes in the ring that have their weight changed
// and with the value representing the fraction - e.g. 0.9 indicates that 10% of the ring space
// that node was responsible for would now be covered by the changed weight of `node`.
// the hash space distance metric is calulated through the values of `Less`.
func (h *HashRing) ConsiderUpdateWeightedNode(node string, weight int) map[string]float32 {
currentWeight, ok := h.weights[node]
if !ok {
currentWeight = 0
}
deltas := map[string]float32{}
if weight > currentWeight {
for i := currentWeight; i < weight; i++ {
newKey := node + "-" + strconv.FormatInt(int64(i), 10)
key := h.hashFunc([]byte(newKey))
pos := sort.Search(len(h.sortedKeys), func(i int) bool { return key.Less(h.sortedKeys[i]) < 0 })
prevPos := pos - 1
if pos == len(h.sortedKeys) {
pos = 0
}
if prevPos == -1 {
prevPos = len(h.sortedKeys) - 1
}
currentNodeKey := h.sortedKeys[prevPos]
nextNodeKey := h.sortedKeys[pos]
currentNode := h.ring[currentNodeKey]
if _, ok := deltas[currentNode]; !ok {
deltas[currentNode] = 0
}
fullRange := float32(nextNodeKey.Less(currentNodeKey))
if fullRange <= 0 {
fullRange = float32(currentNodeKey.Less(nextNodeKey))
}
if fullRange < float32(key.Less(currentNodeKey)) {
fullRange = float32(key.Less(currentNodeKey))
}
if fullRange > 0 {
deltas[currentNode] -= (fullRange - float32(key.Less(currentNodeKey))) / fullRange * 1.0 / float32(h.weights[currentNode])
}
}
} else {
for i := currentWeight; i > weight; i-- {
newKey := node + "-" + strconv.FormatInt(int64(i), 10)
key := h.hashFunc([]byte(newKey))
pos := sort.Search(len(h.sortedKeys), func(i int) bool { return key.Less(h.sortedKeys[i]) < 0 })
prevPos := pos - 1
if pos == len(h.sortedKeys) {
pos = 0
}
if prevPos == -1 {
prevPos = len(h.sortedKeys) - 1
}
nextPos := pos + 1
if nextPos == len(h.sortedKeys) {
nextPos = 0
}
fillingNodeKey := h.sortedKeys[prevPos]
nextNodeKey := h.sortedKeys[nextPos]
expandingNode := h.ring[fillingNodeKey]
if _, ok := deltas[expandingNode]; !ok {
deltas[expandingNode] = 0
}
nk := nextNodeKey.Less(key)
if nk < 0 {
nk = key.Less(nextNodeKey)
}
kf := key.Less(fillingNodeKey)
if kf < 0 {
kf = fillingNodeKey.Less(key)
}
if nk > 0 {
fullRange := (float32(nk) + float32(kf)) / float32(nk)
expanderWeight := float32(h.weights[expandingNode])
deltas[expandingNode] += ((fullRange - 1) / expanderWeight)
}
}
}
return deltas
}