William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 1 | // Copyright 2018 The etcd Authors |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 15 | // Package balancer implements client balancer. |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 16 | package balancer |
| 17 | |
| 18 | import ( |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 19 | "strconv" |
| 20 | "sync" |
| 21 | "time" |
| 22 | |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 23 | "go.etcd.io/etcd/clientv3/balancer/connectivity" |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 24 | "go.etcd.io/etcd/clientv3/balancer/picker" |
| 25 | |
| 26 | "go.uber.org/zap" |
| 27 | "google.golang.org/grpc/balancer" |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 28 | grpcconnectivity "google.golang.org/grpc/connectivity" |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 29 | "google.golang.org/grpc/resolver" |
| 30 | _ "google.golang.org/grpc/resolver/dns" // register DNS resolver |
| 31 | _ "google.golang.org/grpc/resolver/passthrough" // register passthrough resolver |
| 32 | ) |
| 33 | |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 34 | // Config defines balancer configurations. |
| 35 | type Config struct { |
| 36 | // Policy configures balancer policy. |
| 37 | Policy picker.Policy |
| 38 | |
| 39 | // Picker implements gRPC picker. |
| 40 | // Leave empty if "Policy" field is not custom. |
| 41 | // TODO: currently custom policy is not supported. |
| 42 | // Picker picker.Picker |
| 43 | |
| 44 | // Name defines an additional name for balancer. |
| 45 | // Useful for balancer testing to avoid register conflicts. |
| 46 | // If empty, defaults to policy name. |
| 47 | Name string |
| 48 | |
| 49 | // Logger configures balancer logging. |
| 50 | // If nil, logs are discarded. |
| 51 | Logger *zap.Logger |
| 52 | } |
| 53 | |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 54 | // RegisterBuilder creates and registers a builder. Since this function calls balancer.Register, it |
| 55 | // must be invoked at initialization time. |
| 56 | func RegisterBuilder(cfg Config) { |
| 57 | bb := &builder{cfg} |
| 58 | balancer.Register(bb) |
| 59 | |
| 60 | bb.cfg.Logger.Debug( |
| 61 | "registered balancer", |
| 62 | zap.String("policy", bb.cfg.Policy.String()), |
| 63 | zap.String("name", bb.cfg.Name), |
| 64 | ) |
| 65 | } |
| 66 | |
| 67 | type builder struct { |
| 68 | cfg Config |
| 69 | } |
| 70 | |
| 71 | // Build is called initially when creating "ccBalancerWrapper". |
| 72 | // "grpc.Dial" is called to this client connection. |
| 73 | // Then, resolved addresses will be handled via "HandleResolvedAddrs". |
| 74 | func (b *builder) Build(cc balancer.ClientConn, opt balancer.BuildOptions) balancer.Balancer { |
| 75 | bb := &baseBalancer{ |
| 76 | id: strconv.FormatInt(time.Now().UnixNano(), 36), |
| 77 | policy: b.cfg.Policy, |
Abhilash S.L | 3b49463 | 2019-07-16 15:51:09 +0530 | [diff] [blame] | 78 | name: b.cfg.Name, |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 79 | lg: b.cfg.Logger, |
| 80 | |
| 81 | addrToSc: make(map[resolver.Address]balancer.SubConn), |
| 82 | scToAddr: make(map[balancer.SubConn]resolver.Address), |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 83 | scToSt: make(map[balancer.SubConn]grpcconnectivity.State), |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 84 | |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 85 | currentConn: nil, |
| 86 | connectivityRecorder: connectivity.New(b.cfg.Logger), |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 87 | |
| 88 | // initialize picker always returns "ErrNoSubConnAvailable" |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 89 | picker: picker.NewErr(balancer.ErrNoSubConnAvailable), |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 90 | } |
| 91 | |
| 92 | // TODO: support multiple connections |
| 93 | bb.mu.Lock() |
| 94 | bb.currentConn = cc |
| 95 | bb.mu.Unlock() |
| 96 | |
| 97 | bb.lg.Info( |
| 98 | "built balancer", |
| 99 | zap.String("balancer-id", bb.id), |
| 100 | zap.String("policy", bb.policy.String()), |
| 101 | zap.String("resolver-target", cc.Target()), |
| 102 | ) |
| 103 | return bb |
| 104 | } |
| 105 | |
| 106 | // Name implements "grpc/balancer.Builder" interface. |
| 107 | func (b *builder) Name() string { return b.cfg.Name } |
| 108 | |
| 109 | // Balancer defines client balancer interface. |
| 110 | type Balancer interface { |
| 111 | // Balancer is called on specified client connection. Client initiates gRPC |
| 112 | // connection with "grpc.Dial(addr, grpc.WithBalancerName)", and then those resolved |
| 113 | // addresses are passed to "grpc/balancer.Balancer.HandleResolvedAddrs". |
| 114 | // For each resolved address, balancer calls "balancer.ClientConn.NewSubConn". |
| 115 | // "grpc/balancer.Balancer.HandleSubConnStateChange" is called when connectivity state |
| 116 | // changes, thus requires failover logic in this method. |
| 117 | balancer.Balancer |
| 118 | |
| 119 | // Picker calls "Pick" for every client request. |
| 120 | picker.Picker |
| 121 | } |
| 122 | |
| 123 | type baseBalancer struct { |
| 124 | id string |
| 125 | policy picker.Policy |
| 126 | name string |
| 127 | lg *zap.Logger |
| 128 | |
| 129 | mu sync.RWMutex |
| 130 | |
| 131 | addrToSc map[resolver.Address]balancer.SubConn |
| 132 | scToAddr map[balancer.SubConn]resolver.Address |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 133 | scToSt map[balancer.SubConn]grpcconnectivity.State |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 134 | |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 135 | currentConn balancer.ClientConn |
| 136 | connectivityRecorder connectivity.Recorder |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 137 | |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 138 | picker picker.Picker |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 139 | } |
| 140 | |
| 141 | // HandleResolvedAddrs implements "grpc/balancer.Balancer" interface. |
| 142 | // gRPC sends initial or updated resolved addresses from "Build". |
| 143 | func (bb *baseBalancer) HandleResolvedAddrs(addrs []resolver.Address, err error) { |
| 144 | if err != nil { |
| 145 | bb.lg.Warn("HandleResolvedAddrs called with error", zap.String("balancer-id", bb.id), zap.Error(err)) |
| 146 | return |
| 147 | } |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 148 | bb.lg.Info("resolved", |
| 149 | zap.String("picker", bb.picker.String()), |
| 150 | zap.String("balancer-id", bb.id), |
| 151 | zap.Strings("addresses", addrsToStrings(addrs)), |
| 152 | ) |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 153 | |
| 154 | bb.mu.Lock() |
| 155 | defer bb.mu.Unlock() |
| 156 | |
| 157 | resolved := make(map[resolver.Address]struct{}) |
| 158 | for _, addr := range addrs { |
| 159 | resolved[addr] = struct{}{} |
| 160 | if _, ok := bb.addrToSc[addr]; !ok { |
| 161 | sc, err := bb.currentConn.NewSubConn([]resolver.Address{addr}, balancer.NewSubConnOptions{}) |
| 162 | if err != nil { |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 163 | bb.lg.Warn("NewSubConn failed", zap.String("picker", bb.picker.String()), zap.String("balancer-id", bb.id), zap.Error(err), zap.String("address", addr.Addr)) |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 164 | continue |
| 165 | } |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 166 | bb.lg.Info("created subconn", zap.String("address", addr.Addr)) |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 167 | bb.addrToSc[addr] = sc |
| 168 | bb.scToAddr[sc] = addr |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 169 | bb.scToSt[sc] = grpcconnectivity.Idle |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 170 | sc.Connect() |
| 171 | } |
| 172 | } |
| 173 | |
| 174 | for addr, sc := range bb.addrToSc { |
| 175 | if _, ok := resolved[addr]; !ok { |
| 176 | // was removed by resolver or failed to create subconn |
| 177 | bb.currentConn.RemoveSubConn(sc) |
| 178 | delete(bb.addrToSc, addr) |
| 179 | |
| 180 | bb.lg.Info( |
| 181 | "removed subconn", |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 182 | zap.String("picker", bb.picker.String()), |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 183 | zap.String("balancer-id", bb.id), |
| 184 | zap.String("address", addr.Addr), |
| 185 | zap.String("subconn", scToString(sc)), |
| 186 | ) |
| 187 | |
| 188 | // Keep the state of this sc in bb.scToSt until sc's state becomes Shutdown. |
| 189 | // The entry will be deleted in HandleSubConnStateChange. |
| 190 | // (DO NOT) delete(bb.scToAddr, sc) |
| 191 | // (DO NOT) delete(bb.scToSt, sc) |
| 192 | } |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | // HandleSubConnStateChange implements "grpc/balancer.Balancer" interface. |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 197 | func (bb *baseBalancer) HandleSubConnStateChange(sc balancer.SubConn, s grpcconnectivity.State) { |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 198 | bb.mu.Lock() |
| 199 | defer bb.mu.Unlock() |
| 200 | |
| 201 | old, ok := bb.scToSt[sc] |
| 202 | if !ok { |
| 203 | bb.lg.Warn( |
| 204 | "state change for an unknown subconn", |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 205 | zap.String("picker", bb.picker.String()), |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 206 | zap.String("balancer-id", bb.id), |
| 207 | zap.String("subconn", scToString(sc)), |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 208 | zap.Int("subconn-size", len(bb.scToAddr)), |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 209 | zap.String("state", s.String()), |
| 210 | ) |
| 211 | return |
| 212 | } |
| 213 | |
| 214 | bb.lg.Info( |
| 215 | "state changed", |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 216 | zap.String("picker", bb.picker.String()), |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 217 | zap.String("balancer-id", bb.id), |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 218 | zap.Bool("connected", s == grpcconnectivity.Ready), |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 219 | zap.String("subconn", scToString(sc)), |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 220 | zap.Int("subconn-size", len(bb.scToAddr)), |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 221 | zap.String("address", bb.scToAddr[sc].Addr), |
| 222 | zap.String("old-state", old.String()), |
| 223 | zap.String("new-state", s.String()), |
| 224 | ) |
| 225 | |
| 226 | bb.scToSt[sc] = s |
| 227 | switch s { |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 228 | case grpcconnectivity.Idle: |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 229 | sc.Connect() |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 230 | case grpcconnectivity.Shutdown: |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 231 | // When an address was removed by resolver, b called RemoveSubConn but |
| 232 | // kept the sc's state in scToSt. Remove state for this sc here. |
| 233 | delete(bb.scToAddr, sc) |
| 234 | delete(bb.scToSt, sc) |
| 235 | } |
| 236 | |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 237 | oldAggrState := bb.connectivityRecorder.GetCurrentState() |
| 238 | bb.connectivityRecorder.RecordTransition(old, s) |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 239 | |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 240 | // Update balancer picker when one of the following happens: |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 241 | // - this sc became ready from not-ready |
| 242 | // - this sc became not-ready from ready |
| 243 | // - the aggregated state of balancer became TransientFailure from non-TransientFailure |
| 244 | // - the aggregated state of balancer became non-TransientFailure from TransientFailure |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 245 | if (s == grpcconnectivity.Ready) != (old == grpcconnectivity.Ready) || |
| 246 | (bb.connectivityRecorder.GetCurrentState() == grpcconnectivity.TransientFailure) != (oldAggrState == grpcconnectivity.TransientFailure) { |
| 247 | bb.updatePicker() |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 248 | } |
| 249 | |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 250 | bb.currentConn.UpdateBalancerState(bb.connectivityRecorder.GetCurrentState(), bb.picker) |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 251 | } |
| 252 | |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 253 | func (bb *baseBalancer) updatePicker() { |
| 254 | if bb.connectivityRecorder.GetCurrentState() == grpcconnectivity.TransientFailure { |
| 255 | bb.picker = picker.NewErr(balancer.ErrTransientFailure) |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 256 | bb.lg.Info( |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 257 | "updated picker to transient error picker", |
| 258 | zap.String("picker", bb.picker.String()), |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 259 | zap.String("balancer-id", bb.id), |
| 260 | zap.String("policy", bb.policy.String()), |
| 261 | ) |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 262 | return |
| 263 | } |
| 264 | |
| 265 | // only pass ready subconns to picker |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 266 | scToAddr := make(map[balancer.SubConn]resolver.Address) |
| 267 | for addr, sc := range bb.addrToSc { |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 268 | if st, ok := bb.scToSt[sc]; ok && st == grpcconnectivity.Ready { |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 269 | scToAddr[sc] = addr |
| 270 | } |
| 271 | } |
| 272 | |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 273 | bb.picker = picker.New(picker.Config{ |
| 274 | Policy: bb.policy, |
| 275 | Logger: bb.lg, |
| 276 | SubConnToResolverAddress: scToAddr, |
| 277 | }) |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 278 | bb.lg.Info( |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 279 | "updated picker", |
| 280 | zap.String("picker", bb.picker.String()), |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 281 | zap.String("balancer-id", bb.id), |
| 282 | zap.String("policy", bb.policy.String()), |
David Bainbridge | 788e520 | 2019-10-21 18:49:40 +0000 | [diff] [blame] | 283 | zap.Strings("subconn-ready", scsToStrings(scToAddr)), |
| 284 | zap.Int("subconn-size", len(scToAddr)), |
William Kurkian | ea86948 | 2019-04-09 15:16:11 -0400 | [diff] [blame] | 285 | ) |
| 286 | } |
| 287 | |
| 288 | // Close implements "grpc/balancer.Balancer" interface. |
| 289 | // Close is a nop because base balancer doesn't have internal state to clean up, |
| 290 | // and it doesn't need to call RemoveSubConn for the SubConns. |
| 291 | func (bb *baseBalancer) Close() { |
| 292 | // TODO |
| 293 | } |