-
Notifications
You must be signed in to change notification settings - Fork 3.8k
/
schema_feed.go
634 lines (572 loc) · 19.4 KB
/
schema_feed.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
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
// Copyright 2018 The Cockroach Authors.
//
// Licensed as a CockroachDB Enterprise file under the Cockroach Community
// License (the "License"); you may not use this file except in compliance with
// the License. You may obtain a copy of the License at
//
// https://github.com/cockroachdb/cockroach/blob/master/licenses/CCL.txt
package schemafeed
import (
"context"
"fmt"
"sort"
"time"
"github.com/cockroachdb/cockroach/pkg/ccl/changefeedccl/changefeedbase"
"github.com/cockroachdb/cockroach/pkg/jobs/jobspb"
"github.com/cockroachdb/cockroach/pkg/keys"
"github.com/cockroachdb/cockroach/pkg/kv"
"github.com/cockroachdb/cockroach/pkg/roachpb"
"github.com/cockroachdb/cockroach/pkg/settings/cluster"
"github.com/cockroachdb/cockroach/pkg/sql/catalog"
"github.com/cockroachdb/cockroach/pkg/sql/catalog/catalogkv"
"github.com/cockroachdb/cockroach/pkg/sql/catalog/descpb"
"github.com/cockroachdb/cockroach/pkg/sql/catalog/lease"
"github.com/cockroachdb/cockroach/pkg/sql/catalog/tabledesc"
"github.com/cockroachdb/cockroach/pkg/sql/catalog/typedesc"
"github.com/cockroachdb/cockroach/pkg/storage"
"github.com/cockroachdb/cockroach/pkg/util/encoding"
"github.com/cockroachdb/cockroach/pkg/util/hlc"
"github.com/cockroachdb/cockroach/pkg/util/log"
"github.com/cockroachdb/cockroach/pkg/util/syncutil"
"github.com/cockroachdb/cockroach/pkg/util/timeutil"
"github.com/cockroachdb/errors"
)
// TODO(ajwerner): Ideally we could have a centralized worker which reads the
// table descriptors instead of polling from each changefeed. This wouldn't be
// too hard. Each registered queue would have a start time. You'd scan from the
// earliest and just ingest the relevant descriptors.
// TableEvent represents a change to a table descriptor.
type TableEvent struct {
Before, After *tabledesc.Immutable
}
// Timestamp refers to the ModificationTime of the After table descriptor.
func (e TableEvent) Timestamp() hlc.Timestamp {
return e.After.ModificationTime
}
// Config configures a SchemaFeed.
type Config struct {
DB *kv.DB
Clock *hlc.Clock
Settings *cluster.Settings
Targets jobspb.ChangefeedTargets
// SchemaChangeEvents controls the class of events which are emitted by this
// SchemaFeed.
SchemaChangeEvents changefeedbase.SchemaChangeEventClass
// InitialHighWater is the timestamp after which events should occur.
//
// NB: When clients want to create a changefeed which has a resolved timestamp
// of ts1, they care about write which occur at ts1.Next() and later but they
// should scan the tables as of ts1. This is important so that writes which
// change the table at ts1.Next() are emitted as an event.
InitialHighWater hlc.Timestamp
// LeaseManager is used to ensure that when an event is emitted that at a higher
// level it is ensured that the right table descriptor will be used for the
// event if this lease manager is used.
//
// TODO(ajwerner): Should this live underneath the FilterFunc?
// Should there be another function to decide whether to update the
// lease manager?
LeaseManager *lease.Manager
}
// SchemaFeed tracks changes to a set of tables and exports them as a queue of
// events. The queue allows clients to provide a timestamp at or before which
// all events must be seen by the time Peek or Pop returns. This allows clients
// to ensure that all table events which precede some rangefeed event are seen
// before propagating that rangefeed event.
//
// Internally, two timestamps are tracked. The high-water is the highest
// timestamp such that every version of a TableDescriptor has met a provided
// invariant (via `validateFn`). An error timestamp is also kept, which is the
// lowest timestamp where at least one table doesn't meet the invariant.
type SchemaFeed struct {
filter tableEventFilter
db *kv.DB
clock *hlc.Clock
settings *cluster.Settings
targets jobspb.ChangefeedTargets
leaseMgr *lease.Manager
mu struct {
syncutil.Mutex
started bool
// the highest known valid timestamp
highWater hlc.Timestamp
// the lowest known invalid timestamp
errTS hlc.Timestamp
// the error associated with errTS
err error
// callers waiting on a timestamp to be resolved as valid or invalid
waiters []tableHistoryWaiter
// events is a sorted list of table events which have not been popped and
// are at or below highWater.
events []TableEvent
// previousTableVersion is a map from tableID to the most recent version
// of the table descriptor seen by the poller. This is needed to determine
// when a backilling mutation has successfully completed - this can only
// be determining by comparing a version to the previous version.
previousTableVersion map[descpb.ID]*tabledesc.Immutable
// typeDeps tracks dependencies from target tables to user defined types
// that they use.
typeDeps typeDependencyTracker
}
}
type typeDependencyTracker struct {
deps map[descpb.ID][]descpb.ID
}
func (t *typeDependencyTracker) addDependency(typeID, tableID descpb.ID) {
deps, ok := t.deps[typeID]
if !ok {
t.deps[typeID] = []descpb.ID{tableID}
} else {
// Check if we already contain this dependency. If so, noop.
for _, dep := range deps {
if dep == tableID {
return
}
}
t.deps[typeID] = append(deps, tableID)
}
}
func (t *typeDependencyTracker) removeDependency(typeID, tableID descpb.ID) {
deps, ok := t.deps[typeID]
if !ok {
return
}
for i := range deps {
if deps[i] == tableID {
deps = append(deps[:i], deps[i+1:]...)
break
}
}
if len(deps) == 0 {
delete(t.deps, typeID)
} else {
t.deps[typeID] = deps
}
}
func (t *typeDependencyTracker) purgeTable(tbl *tabledesc.Immutable) {
if !tbl.ContainsUserDefinedTypes() {
return
}
for _, colOrd := range tbl.GetColumnOrdinalsWithUserDefinedTypes() {
colTyp := tbl.DeletableColumns()[colOrd].Type
t.removeDependency(typedesc.UserDefinedTypeOIDToID(colTyp.Oid()), tbl.GetID())
}
}
func (t *typeDependencyTracker) ingestTable(tbl *tabledesc.Immutable) {
if !tbl.ContainsUserDefinedTypes() {
return
}
for _, colOrd := range tbl.GetColumnOrdinalsWithUserDefinedTypes() {
colTyp := tbl.DeletableColumns()[colOrd].Type
t.addDependency(typedesc.UserDefinedTypeOIDToID(colTyp.Oid()), tbl.GetID())
}
}
func (t *typeDependencyTracker) containsType(id descpb.ID) bool {
_, ok := t.deps[id]
return ok
}
type tableHistoryWaiter struct {
ts hlc.Timestamp
errCh chan error
}
// New creates SchemaFeed with the given Config.
func New(cfg Config) *SchemaFeed {
// TODO(ajwerner): validate config.
m := &SchemaFeed{
filter: schemaChangeEventFilters[cfg.SchemaChangeEvents],
db: cfg.DB,
clock: cfg.Clock,
settings: cfg.Settings,
targets: cfg.Targets,
leaseMgr: cfg.LeaseManager,
}
m.mu.previousTableVersion = make(map[descpb.ID]*tabledesc.Immutable)
m.mu.highWater = cfg.InitialHighWater
m.mu.typeDeps = typeDependencyTracker{deps: make(map[descpb.ID][]descpb.ID)}
return m
}
func (tf *SchemaFeed) markStarted() error {
tf.mu.Lock()
defer tf.mu.Unlock()
if tf.mu.started {
return errors.AssertionFailedf("SchemaFeed started more than once")
}
tf.mu.started = true
return nil
}
// Run will run the SchemaFeed. It is an error to run a feed more than once.
func (tf *SchemaFeed) Run(ctx context.Context) error {
if err := tf.markStarted(); err != nil {
return err
}
// Fetch the table descs as of the initial highWater and prime the table
// history with them. This addresses #41694 where we'd skip the rest of a
// backfill if the changefeed was paused/unpaused during it. The bug was that
// the changefeed wouldn't notice the table descriptor had changed (and thus
// we were in the backfill state) when it restarted.
if err := tf.primeInitialTableDescs(ctx); err != nil {
return err
}
// We want to initialize the table history which will pull the initial version
// and then begin polling.
//
// TODO(ajwerner): As written the polling will add table events forever.
// If there are a ton of table events we'll buffer them all in RAM. There are
// cases where this might be problematic. It could be mitigated with some
// memory monitoring. Probably better is to not poll eagerly but only poll if
// we don't have an event.
//
// After we add some sort of locking to prevent schema changes we should also
// only poll if we don't have a lease.
return tf.pollTableHistory(ctx)
}
func (tf *SchemaFeed) primeInitialTableDescs(ctx context.Context) error {
tf.mu.Lock()
initialTableDescTs := tf.mu.highWater
tf.mu.Unlock()
var initialDescs []catalog.Descriptor
initialTableDescsFn := func(ctx context.Context, txn *kv.Txn) error {
initialDescs = initialDescs[:0]
txn.SetFixedTimestamp(ctx, initialTableDescTs)
// Note that all targets are currently guaranteed to be tables.
for tableID := range tf.targets {
tableDesc, err := catalogkv.MustGetTableDescByID(ctx, txn, keys.SystemSQLCodec, tableID)
if err != nil {
return err
}
initialDescs = append(initialDescs, tableDesc)
}
return nil
}
if err := tf.db.Txn(ctx, initialTableDescsFn); err != nil {
return err
}
tf.mu.Lock()
// Register all types used by the initial set of tables.
for _, desc := range initialDescs {
tbl := desc.(*tabledesc.Immutable)
tf.mu.typeDeps.ingestTable(tbl)
}
tf.mu.Unlock()
return tf.ingestDescriptors(ctx, hlc.Timestamp{}, initialTableDescTs, initialDescs, tf.validateDescriptor)
}
func (tf *SchemaFeed) pollTableHistory(ctx context.Context) error {
for {
if err := tf.updateTableHistory(ctx, tf.clock.Now()); err != nil {
return err
}
select {
case <-ctx.Done():
return nil
case <-time.After(changefeedbase.TableDescriptorPollInterval.Get(&tf.settings.SV)):
}
}
}
func (tf *SchemaFeed) updateTableHistory(ctx context.Context, endTS hlc.Timestamp) error {
startTS := tf.highWater()
if endTS.LessEq(startTS) {
return nil
}
descs, err := tf.fetchDescriptorVersions(ctx, tf.db, startTS, endTS)
if err != nil {
return err
}
return tf.ingestDescriptors(ctx, startTS, endTS, descs, tf.validateDescriptor)
}
// Peek returns all events which have not been popped which happen at or
// before the passed timestamp.
func (tf *SchemaFeed) Peek(
ctx context.Context, atOrBefore hlc.Timestamp,
) (events []TableEvent, err error) {
return tf.peekOrPop(ctx, atOrBefore, false /* pop */)
}
// Pop pops events from the EventQueue.
func (tf *SchemaFeed) Pop(
ctx context.Context, atOrBefore hlc.Timestamp,
) (events []TableEvent, err error) {
return tf.peekOrPop(ctx, atOrBefore, true /* pop */)
}
func (tf *SchemaFeed) peekOrPop(
ctx context.Context, atOrBefore hlc.Timestamp, pop bool,
) (events []TableEvent, err error) {
if err = tf.waitForTS(ctx, atOrBefore); err != nil {
return nil, err
}
tf.mu.Lock()
defer tf.mu.Unlock()
i := sort.Search(len(tf.mu.events), func(i int) bool {
return !tf.mu.events[i].Timestamp().LessEq(atOrBefore)
})
if i == -1 {
i = 0
}
events = tf.mu.events[:i]
if pop {
tf.mu.events = tf.mu.events[i:]
}
return events, nil
}
// highWater returns the current high-water timestamp.
func (tf *SchemaFeed) highWater() hlc.Timestamp {
tf.mu.Lock()
highWater := tf.mu.highWater
tf.mu.Unlock()
return highWater
}
// waitForTS blocks until the given timestamp is less than or equal to the
// high-water or error timestamp. In the latter case, the error is returned.
//
// If called twice with the same timestamp, two different errors may be returned
// (since the error timestamp can recede). However, the return for a given
// timestamp will never switch from nil to an error or vice-versa (assuming that
// `validateFn` is deterministic and the ingested descriptors are read
// transactionally).
func (tf *SchemaFeed) waitForTS(ctx context.Context, ts hlc.Timestamp) error {
var errCh chan error
tf.mu.Lock()
highWater := tf.mu.highWater
var err error
if tf.mu.errTS != (hlc.Timestamp{}) && tf.mu.errTS.LessEq(ts) {
err = tf.mu.err
}
fastPath := err != nil || ts.LessEq(highWater)
if !fastPath {
errCh = make(chan error, 1)
tf.mu.waiters = append(tf.mu.waiters, tableHistoryWaiter{ts: ts, errCh: errCh})
}
tf.mu.Unlock()
if fastPath {
if log.V(1) {
log.Infof(ctx, "fastpath for %s: %v", ts, err)
}
return err
}
if log.V(1) {
log.Infof(ctx, "waiting for %s highwater", ts)
}
start := timeutil.Now()
select {
case <-ctx.Done():
return ctx.Err()
case err := <-errCh:
if log.V(1) {
log.Infof(ctx, "waited %s for %s highwater: %v", timeutil.Since(start), ts, err)
}
return err
}
}
func descLess(a, b catalog.Descriptor) bool {
aTime, bTime := a.GetModificationTime(), b.GetModificationTime()
if aTime.Equal(bTime) {
return a.GetID() < b.GetID()
}
return aTime.Less(bTime)
}
// ingestDescriptors checks the given descriptors against the invariant check
// function and adjusts the high-water or error timestamp appropriately. It is
// required that the descriptors represent a transactional kv read between the
// two given timestamps.
//
// validateFn is exposed for testing, in production it is tf.validateDescriptor.
func (tf *SchemaFeed) ingestDescriptors(
ctx context.Context,
startTS, endTS hlc.Timestamp,
descs []catalog.Descriptor,
validateFn func(ctx context.Context, desc catalog.Descriptor) error,
) error {
sort.Slice(descs, func(i, j int) bool { return descLess(descs[i], descs[j]) })
var validateErr error
for _, desc := range descs {
if err := validateFn(ctx, desc); validateErr == nil {
validateErr = err
}
}
return tf.adjustTimestamps(startTS, endTS, validateErr)
}
// adjustTimestamps adjusts the high-water or error timestamp appropriately.
func (tf *SchemaFeed) adjustTimestamps(startTS, endTS hlc.Timestamp, validateErr error) error {
tf.mu.Lock()
defer tf.mu.Unlock()
if validateErr != nil {
// don't care about startTS in the invalid case
if tf.mu.errTS == (hlc.Timestamp{}) || endTS.Less(tf.mu.errTS) {
tf.mu.errTS = endTS
tf.mu.err = validateErr
newWaiters := make([]tableHistoryWaiter, 0, len(tf.mu.waiters))
for _, w := range tf.mu.waiters {
if w.ts.Less(tf.mu.errTS) {
newWaiters = append(newWaiters, w)
continue
}
w.errCh <- validateErr
}
tf.mu.waiters = newWaiters
}
return validateErr
}
if tf.mu.highWater.Less(startTS) {
return errors.Errorf(`gap between %s and %s`, tf.mu.highWater, startTS)
}
if tf.mu.highWater.Less(endTS) {
tf.mu.highWater = endTS
newWaiters := make([]tableHistoryWaiter, 0, len(tf.mu.waiters))
for _, w := range tf.mu.waiters {
if tf.mu.highWater.Less(w.ts) {
newWaiters = append(newWaiters, w)
continue
}
w.errCh <- nil
}
tf.mu.waiters = newWaiters
}
return nil
}
func (e TableEvent) String() string {
return formatEvent(e)
}
func formatDesc(desc *tabledesc.Immutable) string {
return fmt.Sprintf("%d:%d@%v", desc.ID, desc.Version, desc.ModificationTime)
}
func formatEvent(e TableEvent) string {
return fmt.Sprintf("%v->%v", formatDesc(e.Before), formatDesc(e.After))
}
func (tf *SchemaFeed) validateDescriptor(ctx context.Context, desc catalog.Descriptor) error {
tf.mu.Lock()
defer tf.mu.Unlock()
switch desc := desc.(type) {
case *typedesc.Immutable:
if !tf.mu.typeDeps.containsType(desc.GetID()) {
return nil
}
// If a interesting type changed, then we just want to force the lease
// manager to acquire the freshest version of the type.
return tf.leaseMgr.AcquireFreshestFromStore(ctx, desc.ID)
case *tabledesc.Immutable:
if err := changefeedbase.ValidateTable(tf.targets, desc); err != nil {
return err
}
log.Infof(ctx, "validate %v", formatDesc(desc))
if lastVersion, ok := tf.mu.previousTableVersion[desc.ID]; ok {
// NB: Writes can occur to a table
if desc.ModificationTime.LessEq(lastVersion.ModificationTime) {
return nil
}
// To avoid race conditions with the lease manager, at this point we force
// the manager to acquire the freshest descriptor of this table from the
// store. In normal operation, the lease manager returns the newest
// descriptor it knows about for the timestamp, assuming it's still
// allowed; without this explicit load, the lease manager might therefore
// return the previous version of the table, which is still technically
// allowed by the schema change system.
if err := tf.leaseMgr.AcquireFreshestFromStore(ctx, desc.ID); err != nil {
return err
}
// Purge the old version of the table from the type mapping.
tf.mu.typeDeps.purgeTable(lastVersion)
e := TableEvent{
Before: lastVersion,
After: desc,
}
shouldFilter, err := tf.filter.shouldFilter(ctx, e)
log.Infof(ctx, "validate shouldFilter %v %v", formatEvent(e), shouldFilter)
if err != nil {
return err
}
if !shouldFilter {
tf.mu.events = append(tf.mu.events, e)
sort.Slice(tf.mu.events, func(i, j int) bool {
return descLess(tf.mu.events[i].After, tf.mu.events[j].After)
})
}
}
// Add the types used by the table into the dependency tracker.
tf.mu.typeDeps.ingestTable(desc)
tf.mu.previousTableVersion[desc.ID] = desc
return nil
default:
return errors.AssertionFailedf("unexpected descriptor type %T", desc)
}
}
func (tf *SchemaFeed) fetchDescriptorVersions(
ctx context.Context, db *kv.DB, startTS, endTS hlc.Timestamp,
) ([]catalog.Descriptor, error) {
if log.V(2) {
log.Infof(ctx, `fetching table descs (%s,%s]`, startTS, endTS)
}
start := timeutil.Now()
span := roachpb.Span{Key: keys.TODOSQLCodec.TablePrefix(keys.DescriptorTableID)}
span.EndKey = span.Key.PrefixEnd()
header := roachpb.Header{Timestamp: endTS}
req := &roachpb.ExportRequest{
RequestHeader: roachpb.RequestHeaderFromSpan(span),
StartTime: startTS,
MVCCFilter: roachpb.MVCCFilter_All,
ReturnSST: true,
OmitChecksum: true,
}
res, pErr := kv.SendWrappedWith(ctx, db.NonTransactionalSender(), header, req)
if log.V(2) {
log.Infof(ctx, `fetched table descs (%s,%s] took %s`, startTS, endTS, timeutil.Since(start))
}
if pErr != nil {
err := pErr.GoError()
return nil, errors.Wrapf(err, `fetching changes for %s`, span)
}
tf.mu.Lock()
defer tf.mu.Unlock()
var descs []catalog.Descriptor
for _, file := range res.(*roachpb.ExportResponse).Files {
if err := func() error {
it, err := storage.NewMemSSTIterator(file.SST, false /* verify */)
if err != nil {
return err
}
defer it.Close()
for it.SeekGE(storage.NilKey); ; it.Next() {
if ok, err := it.Valid(); err != nil {
return err
} else if !ok {
return nil
}
k := it.UnsafeKey()
remaining, _, _, err := keys.TODOSQLCodec.DecodeIndexPrefix(k.Key)
if err != nil {
return err
}
_, id, err := encoding.DecodeUvarintAscending(remaining)
if err != nil {
return err
}
origName, isTable := tf.targets[descpb.ID(id)]
isType := tf.mu.typeDeps.containsType(descpb.ID(id))
// Check if the descriptor is an interesting table or type.
if !(isTable || isType) {
// Uninteresting descriptor.
continue
}
unsafeValue := it.UnsafeValue()
if unsafeValue == nil {
name := origName.StatementTimeName
if name == "" {
name = fmt.Sprintf("desc(%d)", id)
}
return errors.Errorf(`"%v" was dropped or truncated`, name)
}
// Unmarshal the descriptor.
value := roachpb.Value{RawBytes: unsafeValue}
var desc descpb.Descriptor
if err := value.GetProto(&desc); err != nil {
return err
}
if tableDesc := descpb.TableFromDescriptor(&desc, k.Timestamp); tableDesc != nil {
descs = append(descs, tabledesc.NewImmutable(*tableDesc))
} else if typeDesc := descpb.TypeFromDescriptor(&desc, k.Timestamp); typeDesc != nil {
descs = append(descs, typedesc.NewImmutable(*typeDesc))
}
}
}(); err != nil {
return nil, err
}
}
return descs, nil
}