Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

302 linhas
12 KiB

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