-
Notifications
You must be signed in to change notification settings - Fork 686
/
cluster.go
252 lines (230 loc) · 6.95 KB
/
cluster.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
// Copyright © 2018 Heptio
// 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 envoy
import (
"crypto/sha1"
"crypto/sha256"
"fmt"
"strconv"
"strings"
"time"
v2 "github.com/envoyproxy/go-control-plane/envoy/api/v2"
envoy_cluster "github.com/envoyproxy/go-control-plane/envoy/api/v2/cluster"
"github.com/envoyproxy/go-control-plane/envoy/api/v2/core"
envoy_type "github.com/envoyproxy/go-control-plane/envoy/type"
"github.com/gogo/protobuf/types"
"github.com/heptio/contour/internal/dag"
)
// Cluster creates new v2.Cluster from service.
func Cluster(s dag.Service) *v2.Cluster {
switch s := s.(type) {
case *dag.HTTPService:
return httpCluster(s)
case *dag.TCPService:
return cluster(s)
default:
panic(fmt.Sprintf("unsupported Service: %T", s))
}
}
func httpCluster(service *dag.HTTPService) *v2.Cluster {
c := cluster(&service.TCPService)
switch service.Protocol {
case "h2":
c.TlsContext = UpstreamTLSContext()
fallthrough
case "h2c":
c.Http2ProtocolOptions = &core.Http2ProtocolOptions{}
}
return c
}
func cluster(service *dag.TCPService) *v2.Cluster {
c := &v2.Cluster{
Name: Clustername(service),
AltStatName: altStatName(service),
Type: v2.Cluster_EDS,
EdsClusterConfig: edsconfig("contour", service),
ConnectTimeout: 250 * time.Millisecond,
LbPolicy: lbPolicy(service.LoadBalancerStrategy),
CommonLbConfig: ClusterCommonLBConfig(),
HealthChecks: edshealthcheck(service),
}
// Drain connections immediately if using healthchecks and the endpoint is known to be removed
if service.HealthCheck != nil {
c.DrainConnectionsOnHostRemoval = true
}
if anyPositive(service.MaxConnections, service.MaxPendingRequests, service.MaxRequests, service.MaxRetries) {
c.CircuitBreakers = &envoy_cluster.CircuitBreakers{
Thresholds: []*envoy_cluster.CircuitBreakers_Thresholds{{
MaxConnections: u32nil(service.MaxConnections),
MaxPendingRequests: u32nil(service.MaxPendingRequests),
MaxRequests: u32nil(service.MaxRequests),
MaxRetries: u32nil(service.MaxRetries),
}},
}
}
return c
}
func edsconfig(cluster string, service *dag.TCPService) *v2.Cluster_EdsClusterConfig {
name := []string{
service.Namespace,
service.Name,
service.ServicePort.Name,
}
if name[2] == "" {
name = name[:2]
}
return &v2.Cluster_EdsClusterConfig{
EdsConfig: ConfigSource(cluster),
ServiceName: strings.Join(name, "/"),
}
}
func lbPolicy(strategy string) v2.Cluster_LbPolicy {
switch strategy {
case "WeightedLeastRequest":
return v2.Cluster_LEAST_REQUEST
case "RingHash":
return v2.Cluster_RING_HASH
case "Maglev":
return v2.Cluster_MAGLEV
case "Random":
return v2.Cluster_RANDOM
default:
return v2.Cluster_ROUND_ROBIN
}
}
func edshealthcheck(s *dag.TCPService) []*core.HealthCheck {
if s.HealthCheck == nil {
return nil
}
return []*core.HealthCheck{
healthCheck(s),
}
}
// Clustername returns the name of the CDS cluster for this service.
func Clustername(service *dag.TCPService) string {
buf := service.LoadBalancerStrategy
if hc := service.HealthCheck; hc != nil {
if hc.TimeoutSeconds > 0 {
buf += (time.Duration(hc.TimeoutSeconds) * time.Second).String()
}
if hc.IntervalSeconds > 0 {
buf += (time.Duration(hc.IntervalSeconds) * time.Second).String()
}
if hc.UnhealthyThresholdCount > 0 {
buf += strconv.Itoa(int(hc.UnhealthyThresholdCount))
}
if hc.HealthyThresholdCount > 0 {
buf += strconv.Itoa(int(hc.HealthyThresholdCount))
}
buf += hc.Path
}
hash := sha1.Sum([]byte(buf))
ns := service.Namespace
name := service.Name
return hashname(60, ns, name, strconv.Itoa(int(service.Port)), fmt.Sprintf("%x", hash[:5]))
}
// altStatName generates an alternative stat name for the service
// using format ns_name_port
func altStatName(service *dag.TCPService) string {
return strings.Join([]string{service.Namespace, service.Name, strconv.Itoa(int(service.Port))}, "_")
}
// hashname takes a lenth l and a varargs of strings s and returns a string whose length
// which does not exceed l. Internally s is joined with strings.Join(s, "/"). If the
// combined length exceeds l then hashname truncates each element in s, starting from the
// end using a hash derived from the contents of s (not the current element). This process
// continues until the length of s does not exceed l, or all elements have been truncated.
// In which case, the entire string is replaced with a hash not exceeding the length of l.
func hashname(l int, s ...string) string {
const shorthash = 6 // the length of the shorthash
r := strings.Join(s, "/")
if l > len(r) {
// we're under the limit, nothing to do
return r
}
hash := fmt.Sprintf("%x", sha256.Sum256([]byte(r)))
for n := len(s) - 1; n >= 0; n-- {
s[n] = truncate(l/len(s), s[n], hash[:shorthash])
r = strings.Join(s, "/")
if l > len(r) {
return r
}
}
// truncated everything, but we're still too long
// just return the hash truncated to l.
return hash[:min(len(hash), l)]
}
// truncate truncates s to l length by replacing the
// end of s with -suffix.
func truncate(l int, s, suffix string) string {
if l >= len(s) {
// under the limit, nothing to do
return s
}
if l <= len(suffix) {
// easy case, just return the start of the suffix
return suffix[:min(l, len(suffix))]
}
return s[:l-len(suffix)-1] + "-" + suffix
}
func min(a, b int) int {
if a > b {
return b
}
return a
}
// anyPositive indicates if any of the values provided are greater than zero.
func anyPositive(first int, rest ...int) bool {
if first > 0 {
return true
}
for _, v := range rest {
if v > 0 {
return true
}
}
return false
}
// u32nil creates a *types.UInt32Value containing v.
// u32nil returns nil if v is zero.
func u32nil(val int) *types.UInt32Value {
switch val {
case 0:
return nil
default:
return u32(val)
}
}
func ClusterCommonLBConfig() *v2.Cluster_CommonLbConfig {
return &v2.Cluster_CommonLbConfig{
HealthyPanicThreshold: &envoy_type.Percent{ // Disable HealthyPanicThreshold
Value: 0,
},
}
}
// ConfigSource returns a *core.ConfigSource for cluster.
func ConfigSource(cluster string) *core.ConfigSource {
return &core.ConfigSource{
ConfigSourceSpecifier: &core.ConfigSource_ApiConfigSource{
ApiConfigSource: &core.ApiConfigSource{
ApiType: core.ApiConfigSource_GRPC,
GrpcServices: []*core.GrpcService{{
TargetSpecifier: &core.GrpcService_EnvoyGrpc_{
EnvoyGrpc: &core.GrpcService_EnvoyGrpc{
ClusterName: cluster,
},
},
}},
},
},
}
}