-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
tabletgateway.go
403 lines (352 loc) · 13 KB
/
tabletgateway.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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
/*
Copyright 2019 The Vitess Authors.
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 vtgate
import (
"context"
"flag"
"fmt"
"math/rand"
"sort"
"sync"
"time"
"vitess.io/vitess/go/vt/topo/topoproto"
"vitess.io/vitess/go/vt/discovery"
"vitess.io/vitess/go/vt/log"
"vitess.io/vitess/go/vt/srvtopo"
"vitess.io/vitess/go/vt/topo"
"vitess.io/vitess/go/vt/vterrors"
"vitess.io/vitess/go/vt/vtgate/buffer"
"vitess.io/vitess/go/vt/vttablet/queryservice"
querypb "vitess.io/vitess/go/vt/proto/query"
topodatapb "vitess.io/vitess/go/vt/proto/topodata"
vtrpcpb "vitess.io/vitess/go/vt/proto/vtrpc"
)
const (
tabletGatewayImplementation = "tabletgateway"
)
func init() {
RegisterGatewayCreator(tabletGatewayImplementation, createTabletGateway)
}
var (
_ discovery.HealthCheck = (*discovery.HealthCheckImpl)(nil)
// CellsToWatch is the list of cells the healthcheck operates over. If it is empty, only the local cell is watched
CellsToWatch = flag.String("cells_to_watch", "", "comma-separated list of cells for watching tablets")
)
// TabletGateway implements the Gateway interface.
// This implementation uses the new healthcheck module.
type TabletGateway struct {
queryservice.QueryService
hc discovery.HealthCheck
kev *discovery.KeyspaceEventWatcher
srvTopoServer srvtopo.Server
localCell string
retryCount int
// mu protects the fields of this group.
mu sync.Mutex
// statusAggregators is a map indexed by the key
// keyspace/shard/tablet_type.
statusAggregators map[string]*TabletStatusAggregator
// buffer, if enabled, buffers requests during a detected PRIMARY failover.
buffer *buffer.Buffer
}
func createTabletGateway(ctx context.Context, _ discovery.LegacyHealthCheck, serv srvtopo.Server, cell string, _ int) Gateway {
// we ignore the passed in LegacyHealthCheck and let TabletGateway create it's own HealthCheck
return NewTabletGateway(ctx, nil /*discovery.Healthcheck*/, serv, cell)
}
func createHealthCheck(ctx context.Context, retryDelay, timeout time.Duration, ts *topo.Server, cell, cellsToWatch string) discovery.HealthCheck {
return discovery.NewHealthCheck(ctx, retryDelay, timeout, ts, cell, cellsToWatch)
}
// NewTabletGateway creates and returns a new TabletGateway
// NewTabletGateway is the default Gateway implementation
func NewTabletGateway(ctx context.Context, hc discovery.HealthCheck, serv srvtopo.Server, localCell string) *TabletGateway {
// hack to accomodate various users of gateway + tests
if hc == nil {
var topoServer *topo.Server
if serv != nil {
var err error
topoServer, err = serv.GetTopoServer()
if err != nil {
log.Exitf("Unable to create new TabletGateway: %v", err)
}
}
hc = createHealthCheck(ctx, *HealthCheckRetryDelay, *HealthCheckTimeout, topoServer, localCell, *CellsToWatch)
}
vtgateHealthCheck = hc
gw := &TabletGateway{
hc: hc,
srvTopoServer: serv,
localCell: localCell,
retryCount: *RetryCount,
statusAggregators: make(map[string]*TabletStatusAggregator),
}
gw.setupBuffering(ctx)
gw.QueryService = queryservice.Wrap(nil, gw.withRetry)
return gw
}
func (gw *TabletGateway) setupBuffering(ctx context.Context) {
cfg := buffer.NewConfigFromFlags()
gw.buffer = buffer.New(cfg)
switch *bufferImplementation {
case "healthcheck":
// subscribe to healthcheck updates so that buffer can be notified if needed
// we run this in a separate goroutine so that normal processing doesn't need to block
hcChan := gw.hc.Subscribe()
bufferCtx, bufferCancel := context.WithCancel(ctx)
go func(ctx context.Context, c chan *discovery.TabletHealth, buffer *buffer.Buffer) {
defer bufferCancel()
for {
select {
case <-ctx.Done():
return
case result := <-hcChan:
if result == nil {
return
}
if result.Target.TabletType == topodatapb.TabletType_PRIMARY {
buffer.ProcessPrimaryHealth(result)
}
}
}
}(bufferCtx, hcChan, gw.buffer)
case "keyspace_events":
gw.kev = discovery.NewKeyspaceEventWatcher(ctx, gw.srvTopoServer, gw.hc, gw.localCell)
ksChan := gw.kev.Subscribe()
bufferCtx, bufferCancel := context.WithCancel(ctx)
go func(ctx context.Context, c chan *discovery.KeyspaceEvent, buffer *buffer.Buffer) {
defer bufferCancel()
for {
select {
case <-ctx.Done():
return
case result := <-ksChan:
if result == nil {
return
}
buffer.HandleKeyspaceEvent(result)
}
}
}(bufferCtx, ksChan, gw.buffer)
default:
log.Exitf("unknown buffering implementation for TabletGateway: %q", *bufferImplementation)
}
}
// QueryServiceByAlias satisfies the Gateway interface
func (gw *TabletGateway) QueryServiceByAlias(alias *topodatapb.TabletAlias, target *querypb.Target) (queryservice.QueryService, error) {
return gw.hc.TabletConnection(alias, target)
}
// RegisterStats registers the stats to export the lag since the last refresh
// and the checksum of the topology
func (gw *TabletGateway) RegisterStats() {
gw.hc.RegisterStats()
}
// WaitForTablets is part of the Gateway interface.
func (gw *TabletGateway) WaitForTablets(ctx context.Context, tabletTypesToWait []topodatapb.TabletType) error {
// Skip waiting for tablets if we are not told to do so.
if len(tabletTypesToWait) == 0 {
return nil
}
// Finds the targets to look for.
targets, err := srvtopo.FindAllTargets(ctx, gw.srvTopoServer, gw.localCell, tabletTypesToWait)
if err != nil {
return err
}
return gw.hc.WaitForAllServingTablets(ctx, targets)
}
// Close shuts down underlying connections.
// This function hides the inner implementation.
func (gw *TabletGateway) Close(_ context.Context) error {
gw.buffer.Shutdown()
return gw.hc.Close()
}
// CacheStatus returns a list of TabletCacheStatus per
// keyspace/shard/tablet_type.
func (gw *TabletGateway) CacheStatus() TabletCacheStatusList {
gw.mu.Lock()
res := make(TabletCacheStatusList, 0, len(gw.statusAggregators))
for _, aggr := range gw.statusAggregators {
res = append(res, aggr.GetCacheStatus())
}
gw.mu.Unlock()
sort.Sort(res)
return res
}
// withRetry gets available connections and executes the action. If there are retryable errors,
// it retries retryCount times before failing. It does not retry if the connection is in
// the middle of a transaction. While returning the error check if it maybe a result of
// a resharding event, and set the re-resolve bit and let the upper layers
// re-resolve and retry.
func (gw *TabletGateway) withRetry(ctx context.Context, target *querypb.Target, _ queryservice.QueryService,
_ string, inTransaction bool, inner func(ctx context.Context, target *querypb.Target, conn queryservice.QueryService) (bool, error)) error {
// for transactions, we connect to a specific tablet instead of letting gateway choose one
if inTransaction && target.TabletType != topodatapb.TabletType_PRIMARY {
return vterrors.Errorf(vtrpcpb.Code_INTERNAL, "gateway's query service can only be used for non-transactional queries on replicas")
}
var tabletLastUsed *topodatapb.Tablet
var err error
invalidTablets := make(map[string]bool)
if len(discovery.AllowedTabletTypes) > 0 {
var match bool
for _, allowed := range discovery.AllowedTabletTypes {
if allowed == target.TabletType {
match = true
break
}
}
if !match {
return vterrors.Errorf(vtrpcpb.Code_FAILED_PRECONDITION, "requested tablet type %v is not part of the allowed tablet types for this vtgate: %+v", target.TabletType.String(), discovery.AllowedTabletTypes)
}
}
bufferedOnce := false
for i := 0; i < gw.retryCount+1; i++ {
// Check if we should buffer PRIMARY queries which failed due to an ongoing
// failover.
// Note: We only buffer once and only "!inTransaction" queries i.e.
// a) no transaction is necessary (e.g. critical reads) or
// b) no transaction was created yet.
if !bufferedOnce && !inTransaction && target.TabletType == topodatapb.TabletType_PRIMARY {
// The next call blocks if we should buffer during a failover.
retryDone, bufferErr := gw.buffer.WaitForFailoverEnd(ctx, target.Keyspace, target.Shard, err)
// Request may have been buffered.
if retryDone != nil {
// We're going to retry this request as part of a buffer drain.
// Notify the buffer after we retried.
defer retryDone()
bufferedOnce = true
}
if bufferErr != nil {
err = vterrors.Wrapf(bufferErr,
"failed to automatically buffer and retry failed request during failover. original err (type=%T): %v",
err, err)
break
}
}
tablets := gw.hc.GetHealthyTabletStats(target)
if len(tablets) == 0 {
// if we have a keyspace event watcher, check if the reason why our primary is not available is that it's currently being resharded
if gw.kev != nil && gw.kev.TargetIsBeingResharded(target) {
err = vterrors.Errorf(vtrpcpb.Code_CLUSTER_EVENT, "current keyspace is being resharded")
continue
}
// fail fast if there is no tablet
err = vterrors.Errorf(vtrpcpb.Code_UNAVAILABLE, "no healthy tablet available for '%s'", target.String())
break
}
gw.shuffleTablets(gw.localCell, tablets)
var th *discovery.TabletHealth
// skip tablets we tried before
for _, t := range tablets {
if _, ok := invalidTablets[topoproto.TabletAliasString(t.Tablet.Alias)]; !ok {
th = t
break
}
}
if th == nil {
// do not override error from last attempt.
if err == nil {
err = vterrors.New(vtrpcpb.Code_UNAVAILABLE, "no available connection")
}
break
}
tabletLastUsed = th.Tablet
// execute
if th.Conn == nil {
err = vterrors.Errorf(vtrpcpb.Code_UNAVAILABLE, "no connection for tablet %v", tabletLastUsed)
invalidTablets[topoproto.TabletAliasString(tabletLastUsed.Alias)] = true
continue
}
startTime := time.Now()
var canRetry bool
canRetry, err = inner(ctx, target, th.Conn)
gw.updateStats(target, startTime, err)
if canRetry {
invalidTablets[topoproto.TabletAliasString(tabletLastUsed.Alias)] = true
continue
}
break
}
return NewShardError(err, target)
}
func (gw *TabletGateway) updateStats(target *querypb.Target, startTime time.Time, err error) {
elapsed := time.Since(startTime)
aggr := gw.getStatsAggregator(target)
aggr.UpdateQueryInfo("", target.TabletType, elapsed, err != nil)
}
func (gw *TabletGateway) getStatsAggregator(target *querypb.Target) *TabletStatusAggregator {
key := fmt.Sprintf("%v/%v/%v", target.Keyspace, target.Shard, target.TabletType.String())
// get existing aggregator
gw.mu.Lock()
defer gw.mu.Unlock()
aggr, ok := gw.statusAggregators[key]
if ok {
return aggr
}
// create a new one if it doesn't exist yet
aggr = NewTabletStatusAggregator(target.Keyspace, target.Shard, target.TabletType, key)
gw.statusAggregators[key] = aggr
return aggr
}
func (gw *TabletGateway) shuffleTablets(cell string, tablets []*discovery.TabletHealth) {
sameCell, diffCell, sameCellMax := 0, 0, -1
length := len(tablets)
// move all same cell tablets to the front, this is O(n)
for {
sameCellMax = diffCell - 1
sameCell = gw.nextTablet(cell, tablets, sameCell, length, true)
diffCell = gw.nextTablet(cell, tablets, diffCell, length, false)
// either no more diffs or no more same cells should stop the iteration
if sameCell < 0 || diffCell < 0 {
break
}
if sameCell < diffCell {
// fast forward the `sameCell` lookup to `diffCell + 1`, `diffCell` unchanged
sameCell = diffCell + 1
} else {
// sameCell > diffCell, swap needed
tablets[sameCell], tablets[diffCell] = tablets[diffCell], tablets[sameCell]
sameCell++
diffCell++
}
}
//shuffle in same cell tablets
for i := sameCellMax; i > 0; i-- {
swap := rand.Intn(i + 1)
tablets[i], tablets[swap] = tablets[swap], tablets[i]
}
//shuffle in diff cell tablets
for i, diffCellMin := length-1, sameCellMax+1; i > diffCellMin; i-- {
swap := rand.Intn(i-sameCellMax) + diffCellMin
tablets[i], tablets[swap] = tablets[swap], tablets[i]
}
}
func (gw *TabletGateway) nextTablet(cell string, tablets []*discovery.TabletHealth, offset, length int, sameCell bool) int {
for ; offset < length; offset++ {
if (tablets[offset].Tablet.Alias.Cell == cell) == sameCell {
return offset
}
}
return -1
}
// TabletsCacheStatus returns a displayable version of the health check cache.
func (gw *TabletGateway) TabletsCacheStatus() discovery.TabletsCacheStatusList {
return gw.hc.CacheStatus()
}
// NewShardError returns a new error with the shard info amended.
func NewShardError(in error, target *querypb.Target) error {
if in == nil {
return nil
}
if target != nil {
return vterrors.Wrapf(in, "target: %s.%s.%s", target.Keyspace, target.Shard, topoproto.TabletTypeLString(target.TabletType))
}
return in
}