]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blob - vendor/google.golang.org/grpc/balancer/balancer.go
Upgrade to 0.12
[github/fretlink/terraform-provider-statuscake.git] / vendor / google.golang.org / grpc / balancer / balancer.go
1 /*
2 *
3 * Copyright 2017 gRPC authors.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 */
18
19 // Package balancer defines APIs for load balancing in gRPC.
20 // All APIs in this package are experimental.
21 package balancer
22
23 import (
24 "context"
25 "errors"
26 "net"
27 "strings"
28
29 "google.golang.org/grpc/connectivity"
30 "google.golang.org/grpc/credentials"
31 "google.golang.org/grpc/internal"
32 "google.golang.org/grpc/metadata"
33 "google.golang.org/grpc/resolver"
34 )
35
36 var (
37 // m is a map from name to balancer builder.
38 m = make(map[string]Builder)
39 )
40
41 // Register registers the balancer builder to the balancer map. b.Name
42 // (lowercased) will be used as the name registered with this builder.
43 //
44 // NOTE: this function must only be called during initialization time (i.e. in
45 // an init() function), and is not thread-safe. If multiple Balancers are
46 // registered with the same name, the one registered last will take effect.
47 func Register(b Builder) {
48 m[strings.ToLower(b.Name())] = b
49 }
50
51 // unregisterForTesting deletes the balancer with the given name from the
52 // balancer map.
53 //
54 // This function is not thread-safe.
55 func unregisterForTesting(name string) {
56 delete(m, name)
57 }
58
59 func init() {
60 internal.BalancerUnregister = unregisterForTesting
61 }
62
63 // Get returns the resolver builder registered with the given name.
64 // Note that the compare is done in a case-insenstive fashion.
65 // If no builder is register with the name, nil will be returned.
66 func Get(name string) Builder {
67 if b, ok := m[strings.ToLower(name)]; ok {
68 return b
69 }
70 return nil
71 }
72
73 // SubConn represents a gRPC sub connection.
74 // Each sub connection contains a list of addresses. gRPC will
75 // try to connect to them (in sequence), and stop trying the
76 // remainder once one connection is successful.
77 //
78 // The reconnect backoff will be applied on the list, not a single address.
79 // For example, try_on_all_addresses -> backoff -> try_on_all_addresses.
80 //
81 // All SubConns start in IDLE, and will not try to connect. To trigger
82 // the connecting, Balancers must call Connect.
83 // When the connection encounters an error, it will reconnect immediately.
84 // When the connection becomes IDLE, it will not reconnect unless Connect is
85 // called.
86 //
87 // This interface is to be implemented by gRPC. Users should not need a
88 // brand new implementation of this interface. For the situations like
89 // testing, the new implementation should embed this interface. This allows
90 // gRPC to add new methods to this interface.
91 type SubConn interface {
92 // UpdateAddresses updates the addresses used in this SubConn.
93 // gRPC checks if currently-connected address is still in the new list.
94 // If it's in the list, the connection will be kept.
95 // If it's not in the list, the connection will gracefully closed, and
96 // a new connection will be created.
97 //
98 // This will trigger a state transition for the SubConn.
99 UpdateAddresses([]resolver.Address)
100 // Connect starts the connecting for this SubConn.
101 Connect()
102 }
103
104 // NewSubConnOptions contains options to create new SubConn.
105 type NewSubConnOptions struct {
106 // CredsBundle is the credentials bundle that will be used in the created
107 // SubConn. If it's nil, the original creds from grpc DialOptions will be
108 // used.
109 CredsBundle credentials.Bundle
110 // HealthCheckEnabled indicates whether health check service should be
111 // enabled on this SubConn
112 HealthCheckEnabled bool
113 }
114
115 // ClientConn represents a gRPC ClientConn.
116 //
117 // This interface is to be implemented by gRPC. Users should not need a
118 // brand new implementation of this interface. For the situations like
119 // testing, the new implementation should embed this interface. This allows
120 // gRPC to add new methods to this interface.
121 type ClientConn interface {
122 // NewSubConn is called by balancer to create a new SubConn.
123 // It doesn't block and wait for the connections to be established.
124 // Behaviors of the SubConn can be controlled by options.
125 NewSubConn([]resolver.Address, NewSubConnOptions) (SubConn, error)
126 // RemoveSubConn removes the SubConn from ClientConn.
127 // The SubConn will be shutdown.
128 RemoveSubConn(SubConn)
129
130 // UpdateBalancerState is called by balancer to nofity gRPC that some internal
131 // state in balancer has changed.
132 //
133 // gRPC will update the connectivity state of the ClientConn, and will call pick
134 // on the new picker to pick new SubConn.
135 UpdateBalancerState(s connectivity.State, p Picker)
136
137 // ResolveNow is called by balancer to notify gRPC to do a name resolving.
138 ResolveNow(resolver.ResolveNowOption)
139
140 // Target returns the dial target for this ClientConn.
141 Target() string
142 }
143
144 // BuildOptions contains additional information for Build.
145 type BuildOptions struct {
146 // DialCreds is the transport credential the Balancer implementation can
147 // use to dial to a remote load balancer server. The Balancer implementations
148 // can ignore this if it does not need to talk to another party securely.
149 DialCreds credentials.TransportCredentials
150 // CredsBundle is the credentials bundle that the Balancer can use.
151 CredsBundle credentials.Bundle
152 // Dialer is the custom dialer the Balancer implementation can use to dial
153 // to a remote load balancer server. The Balancer implementations
154 // can ignore this if it doesn't need to talk to remote balancer.
155 Dialer func(context.Context, string) (net.Conn, error)
156 // ChannelzParentID is the entity parent's channelz unique identification number.
157 ChannelzParentID int64
158 }
159
160 // Builder creates a balancer.
161 type Builder interface {
162 // Build creates a new balancer with the ClientConn.
163 Build(cc ClientConn, opts BuildOptions) Balancer
164 // Name returns the name of balancers built by this builder.
165 // It will be used to pick balancers (for example in service config).
166 Name() string
167 }
168
169 // PickOptions contains addition information for the Pick operation.
170 type PickOptions struct {
171 // FullMethodName is the method name that NewClientStream() is called
172 // with. The canonical format is /service/Method.
173 FullMethodName string
174 // Header contains the metadata from the RPC's client header. The metadata
175 // should not be modified; make a copy first if needed.
176 Header metadata.MD
177 }
178
179 // DoneInfo contains additional information for done.
180 type DoneInfo struct {
181 // Err is the rpc error the RPC finished with. It could be nil.
182 Err error
183 // Trailer contains the metadata from the RPC's trailer, if present.
184 Trailer metadata.MD
185 // BytesSent indicates if any bytes have been sent to the server.
186 BytesSent bool
187 // BytesReceived indicates if any byte has been received from the server.
188 BytesReceived bool
189 }
190
191 var (
192 // ErrNoSubConnAvailable indicates no SubConn is available for pick().
193 // gRPC will block the RPC until a new picker is available via UpdateBalancerState().
194 ErrNoSubConnAvailable = errors.New("no SubConn is available")
195 // ErrTransientFailure indicates all SubConns are in TransientFailure.
196 // WaitForReady RPCs will block, non-WaitForReady RPCs will fail.
197 ErrTransientFailure = errors.New("all SubConns are in TransientFailure")
198 )
199
200 // Picker is used by gRPC to pick a SubConn to send an RPC.
201 // Balancer is expected to generate a new picker from its snapshot every time its
202 // internal state has changed.
203 //
204 // The pickers used by gRPC can be updated by ClientConn.UpdateBalancerState().
205 type Picker interface {
206 // Pick returns the SubConn to be used to send the RPC.
207 // The returned SubConn must be one returned by NewSubConn().
208 //
209 // This functions is expected to return:
210 // - a SubConn that is known to be READY;
211 // - ErrNoSubConnAvailable if no SubConn is available, but progress is being
212 // made (for example, some SubConn is in CONNECTING mode);
213 // - other errors if no active connecting is happening (for example, all SubConn
214 // are in TRANSIENT_FAILURE mode).
215 //
216 // If a SubConn is returned:
217 // - If it is READY, gRPC will send the RPC on it;
218 // - If it is not ready, or becomes not ready after it's returned, gRPC will block
219 // until UpdateBalancerState() is called and will call pick on the new picker.
220 //
221 // If the returned error is not nil:
222 // - If the error is ErrNoSubConnAvailable, gRPC will block until UpdateBalancerState()
223 // - If the error is ErrTransientFailure:
224 // - If the RPC is wait-for-ready, gRPC will block until UpdateBalancerState()
225 // is called to pick again;
226 // - Otherwise, RPC will fail with unavailable error.
227 // - Else (error is other non-nil error):
228 // - The RPC will fail with unavailable error.
229 //
230 // The returned done() function will be called once the rpc has finished, with the
231 // final status of that RPC.
232 // done may be nil if balancer doesn't care about the RPC status.
233 Pick(ctx context.Context, opts PickOptions) (conn SubConn, done func(DoneInfo), err error)
234 }
235
236 // Balancer takes input from gRPC, manages SubConns, and collects and aggregates
237 // the connectivity states.
238 //
239 // It also generates and updates the Picker used by gRPC to pick SubConns for RPCs.
240 //
241 // HandleSubConnectionStateChange, HandleResolvedAddrs and Close are guaranteed
242 // to be called synchronously from the same goroutine.
243 // There's no guarantee on picker.Pick, it may be called anytime.
244 type Balancer interface {
245 // HandleSubConnStateChange is called by gRPC when the connectivity state
246 // of sc has changed.
247 // Balancer is expected to aggregate all the state of SubConn and report
248 // that back to gRPC.
249 // Balancer should also generate and update Pickers when its internal state has
250 // been changed by the new state.
251 HandleSubConnStateChange(sc SubConn, state connectivity.State)
252 // HandleResolvedAddrs is called by gRPC to send updated resolved addresses to
253 // balancers.
254 // Balancer can create new SubConn or remove SubConn with the addresses.
255 // An empty address slice and a non-nil error will be passed if the resolver returns
256 // non-nil error to gRPC.
257 HandleResolvedAddrs([]resolver.Address, error)
258 // Close closes the balancer. The balancer is not required to call
259 // ClientConn.RemoveSubConn for its existing SubConns.
260 Close()
261 }
262
263 // ConnectivityStateEvaluator takes the connectivity states of multiple SubConns
264 // and returns one aggregated connectivity state.
265 //
266 // It's not thread safe.
267 type ConnectivityStateEvaluator struct {
268 numReady uint64 // Number of addrConns in ready state.
269 numConnecting uint64 // Number of addrConns in connecting state.
270 numTransientFailure uint64 // Number of addrConns in transientFailure.
271 }
272
273 // RecordTransition records state change happening in subConn and based on that
274 // it evaluates what aggregated state should be.
275 //
276 // - If at least one SubConn in Ready, the aggregated state is Ready;
277 // - Else if at least one SubConn in Connecting, the aggregated state is Connecting;
278 // - Else the aggregated state is TransientFailure.
279 //
280 // Idle and Shutdown are not considered.
281 func (cse *ConnectivityStateEvaluator) RecordTransition(oldState, newState connectivity.State) connectivity.State {
282 // Update counters.
283 for idx, state := range []connectivity.State{oldState, newState} {
284 updateVal := 2*uint64(idx) - 1 // -1 for oldState and +1 for new.
285 switch state {
286 case connectivity.Ready:
287 cse.numReady += updateVal
288 case connectivity.Connecting:
289 cse.numConnecting += updateVal
290 case connectivity.TransientFailure:
291 cse.numTransientFailure += updateVal
292 }
293 }
294
295 // Evaluate.
296 if cse.numReady > 0 {
297 return connectivity.Ready
298 }
299 if cse.numConnecting > 0 {
300 return connectivity.Connecting
301 }
302 return connectivity.TransientFailure
303 }