forked from mailgun/gubernator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
replicated_hash_test.go
115 lines (96 loc) · 2.88 KB
/
replicated_hash_test.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
package gubernator
import (
"net"
"testing"
"github.com/segmentio/fasthash/fnv1"
"github.com/segmentio/fasthash/fnv1a"
"github.com/stretchr/testify/assert"
)
func TestReplicatedConsistentHash(t *testing.T) {
hosts := []string{"a.svc.local", "b.svc.local", "c.svc.local"}
t.Run("Size", func(t *testing.T) {
hash := NewReplicatedConsistentHash(nil, defaultReplicas)
for _, h := range hosts {
hash.Add(&PeerClient{conf: PeerConfig{Info: PeerInfo{GRPCAddress: h}}})
}
assert.Equal(t, len(hosts), hash.Size())
})
t.Run("Host", func(t *testing.T) {
hash := NewReplicatedConsistentHash(nil, defaultReplicas)
hostMap := map[string]*PeerClient{}
for _, h := range hosts {
peer := &PeerClient{conf: PeerConfig{Info: PeerInfo{GRPCAddress: h}}}
hash.Add(peer)
hostMap[h] = peer
}
for host, peer := range hostMap {
assert.Equal(t, peer, hash.GetByPeerInfo(PeerInfo{GRPCAddress: host}))
}
})
t.Run("distribution", func(t *testing.T) {
strings := make([]string, 10000)
for i := range strings {
ip := net.IPv4(192, 168, byte(i>>8), byte(i))
strings[i] = ip.String()
}
for _, tc := range []struct {
name string
inHashFunc HashString64
outDistribution map[string]int
}{{
name: "default",
outDistribution: map[string]int{
"a.svc.local": 2948, "b.svc.local": 3592, "c.svc.local": 3460,
},
}, {
name: "fasthash/fnv1a",
inHashFunc: fnv1a.HashString64,
outDistribution: map[string]int{
"a.svc.local": 3110, "b.svc.local": 3856, "c.svc.local": 3034,
},
}, {
name: "fasthash/fnv1",
inHashFunc: fnv1.HashString64,
outDistribution: map[string]int{
"a.svc.local": 2948, "b.svc.local": 3592, "c.svc.local": 3460,
},
}} {
t.Run(tc.name, func(t *testing.T) {
hash := NewReplicatedConsistentHash(tc.inHashFunc, defaultReplicas)
distribution := make(map[string]int)
for _, h := range hosts {
hash.Add(&PeerClient{conf: PeerConfig{Info: PeerInfo{GRPCAddress: h}}})
distribution[h] = 0
}
for i := range strings {
peer, _ := hash.Get(strings[i])
distribution[peer.Info().GRPCAddress]++
}
assert.Equal(t, tc.outDistribution, distribution)
})
}
})
}
func BenchmarkReplicatedConsistantHash(b *testing.B) {
hashFuncs := map[string]HashString64{
"fasthash/fnv1a": fnv1a.HashString64,
"fasthash/fnv1": fnv1.HashString64,
}
for name, hashFunc := range hashFuncs {
b.Run(name, func(b *testing.B) {
ips := make([]string, b.N)
for i := range ips {
ips[i] = net.IPv4(byte(i>>24), byte(i>>16), byte(i>>8), byte(i)).String()
}
hash := NewReplicatedConsistentHash(hashFunc, defaultReplicas)
hosts := []string{"a.svc.local", "b.svc.local", "c.svc.local"}
for _, h := range hosts {
hash.Add(&PeerClient{conf: PeerConfig{Info: PeerInfo{GRPCAddress: h}}})
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
hash.Get(ips[i])
}
})
}
}