-
Notifications
You must be signed in to change notification settings - Fork 220
/
snapshot.go
1236 lines (1143 loc) · 37.3 KB
/
snapshot.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
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright 2021 TiKV 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.
// NOTE: The code in this file is based on code from the
// TiDB project, licensed under the Apache License v 2.0
//
// https://github.com/pingcap/tidb/tree/cc5e161ac06827589c4966674597c137cc9e809c/store/tikv/snapshot.go
//
// Copyright 2015 PingCAP, Inc.
//
// 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 txnsnapshot
import (
"bytes"
"context"
"fmt"
"math"
"sync"
"sync/atomic"
"time"
"github.com/opentracing/opentracing-go"
"github.com/pingcap/kvproto/pkg/kvrpcpb"
"github.com/pingcap/kvproto/pkg/metapb"
"github.com/pkg/errors"
"github.com/tikv/client-go/v2/config/retry"
tikverr "github.com/tikv/client-go/v2/error"
"github.com/tikv/client-go/v2/internal/client"
"github.com/tikv/client-go/v2/internal/locate"
"github.com/tikv/client-go/v2/internal/logutil"
"github.com/tikv/client-go/v2/internal/unionstore"
"github.com/tikv/client-go/v2/kv"
"github.com/tikv/client-go/v2/metrics"
"github.com/tikv/client-go/v2/oracle"
"github.com/tikv/client-go/v2/tikvrpc"
"github.com/tikv/client-go/v2/tikvrpc/interceptor"
"github.com/tikv/client-go/v2/txnkv/txnlock"
"github.com/tikv/client-go/v2/txnkv/txnutil"
"github.com/tikv/client-go/v2/util"
"go.uber.org/zap"
)
const (
// DefaultScanBatchSize is the default scan batch size.
DefaultScanBatchSize = 256
batchGetSize = 5120
maxTimestamp = math.MaxUint64
)
// IsoLevel is the transaction's isolation level.
type IsoLevel kvrpcpb.IsolationLevel
const (
// SI stands for 'snapshot isolation'.
SI IsoLevel = IsoLevel(kvrpcpb.IsolationLevel_SI)
// RC stands for 'read committed'.
RC IsoLevel = IsoLevel(kvrpcpb.IsolationLevel_RC)
// RCCheckTS stands for 'read consistency' with ts check.
RCCheckTS IsoLevel = IsoLevel(kvrpcpb.IsolationLevel_RCCheckTS)
)
// ToPB converts isolation level to wire type.
func (l IsoLevel) ToPB() kvrpcpb.IsolationLevel {
return kvrpcpb.IsolationLevel(l)
}
type kvstore interface {
CheckVisibility(startTime uint64) error
// GetRegionCache gets the RegionCache.
GetRegionCache() *locate.RegionCache
GetLockResolver() *txnlock.LockResolver
GetTiKVClient() (client client.Client)
// SendReq sends a request to TiKV.
SendReq(bo *retry.Backoffer, req *tikvrpc.Request, regionID locate.RegionVerID, timeout time.Duration) (*tikvrpc.Response, error)
// GetOracle gets a timestamp oracle client.
GetOracle() oracle.Oracle
}
// ReplicaReadAdjuster is a function that adjust the StoreSelectorOption and ReplicaReadType
// based on the keys count for BatchPointGet and PointGet
type ReplicaReadAdjuster func(int) (locate.StoreSelectorOption, kv.ReplicaReadType)
// KVSnapshot implements the tidbkv.Snapshot interface.
type KVSnapshot struct {
store kvstore
version uint64
isolationLevel IsoLevel
priority txnutil.Priority
notFillCache bool
keyOnly bool
vars *kv.Variables
replicaReadSeed uint32
resolvedLocks util.TSSet
committedLocks util.TSSet
scanBatchSize int
readTimeout time.Duration
// Cache the result of Get and BatchGet.
// The invariance is that calling Get or BatchGet multiple times using the same start ts,
// the result should not change.
// NOTE: This representation here is different from the Get and BatchGet API.
// cached use len(value)=0 to represent a key-value entry doesn't exist (a reliable truth from TiKV).
// In the BatchGet API, it use no key-value entry to represent non-exist.
// It's OK as long as there are no zero-byte values in the protocol.
mu struct {
sync.RWMutex
hitCnt int64
cached map[string][]byte
cachedSize int
stats *SnapshotRuntimeStats
replicaRead kv.ReplicaReadType
taskID uint64
isStaleness bool
busyThreshold time.Duration
readReplicaScope string
// replicaReadAdjuster check and adjust the replica read type and store match labels.
replicaReadAdjuster ReplicaReadAdjuster
// MatchStoreLabels indicates the labels the store should be matched
matchStoreLabels []*metapb.StoreLabel
// resourceGroupTag is use to set the kv request resource group tag.
resourceGroupTag []byte
// resourceGroupTagger is use to set the kv request resource group tag if resourceGroupTag is nil.
resourceGroupTagger tikvrpc.ResourceGroupTagger
// interceptor is used to decorate the RPC request logic related to the snapshot.
interceptor interceptor.RPCInterceptor
// resourceGroupName is used to bind the request to specified resource group.
resourceGroupName string
}
sampleStep uint32
*util.RequestSource
isPipelined bool
}
// NewTiKVSnapshot creates a snapshot of an TiKV store.
func NewTiKVSnapshot(store kvstore, ts uint64, replicaReadSeed uint32) *KVSnapshot {
// Sanity check for snapshot version.
if ts >= math.MaxInt64 && ts != math.MaxUint64 {
err := errors.Errorf("try to get snapshot with a large ts %d", ts)
panic(err)
}
return &KVSnapshot{
store: store,
version: ts,
scanBatchSize: DefaultScanBatchSize,
priority: txnutil.PriorityNormal,
vars: kv.DefaultVars,
replicaReadSeed: replicaReadSeed,
RequestSource: &util.RequestSource{},
}
}
const batchGetMaxBackoff = 20000
// SetSnapshotTS resets the timestamp for reads.
func (s *KVSnapshot) SetSnapshotTS(ts uint64) {
// Sanity check for snapshot version.
if ts >= math.MaxInt64 && ts != math.MaxUint64 {
err := errors.Errorf("try to get snapshot with a large ts %d", ts)
panic(err)
}
// Invalidate cache if the snapshotTS change!
s.version = ts
s.mu.Lock()
s.mu.cached = nil
s.mu.Unlock()
// And also remove the minCommitTS pushed information.
s.resolvedLocks = util.TSSet{}
}
// IsInternal returns if the KvSnapshot is used by internal executions.
func (s *KVSnapshot) IsInternal() bool {
return util.IsRequestSourceInternal(s.RequestSource)
}
// BatchGet gets all the keys' value from kv-server and returns a map contains key/value pairs.
// The map will not contain nonexistent keys.
// NOTE: Don't modify keys. Some codes rely on the order of keys.
func (s *KVSnapshot) BatchGet(ctx context.Context, keys [][]byte) (map[string][]byte, error) {
return s.BatchGetWithTier(ctx, keys, BatchGetSnapshotTier)
}
// BatchGet tiers indicate the read tier of the batch get request.
// BatchGet read keys in regions. The keys location and region error retry mechanism are shared.
const (
// BatchGetSnapshotTier indicates the batch get reads from a snapshot.
BatchGetSnapshotTier = 1 << iota
// BatchGetBufferTier indicates the batch get reads from the pipelined flushed buffer, only read locks in the current txn.
// this only works when the txn is created with a pipelined memdb, unless an error will be returned.
BatchGetBufferTier
)
// BatchGetWithTier gets all the keys' value from kv-server with given tier and returns a map contains key/value pairs.
func (s *KVSnapshot) BatchGetWithTier(ctx context.Context, keys [][]byte, readTier int) (map[string][]byte, error) {
// Check the cached value first.
m := make(map[string][]byte)
s.mu.RLock()
if s.mu.cached != nil && readTier == BatchGetSnapshotTier {
tmp := make([][]byte, 0, len(keys))
for _, key := range keys {
if val, ok := s.mu.cached[string(key)]; ok {
atomic.AddInt64(&s.mu.hitCnt, 1)
if len(val) > 0 {
m[string(key)] = val
}
} else {
tmp = append(tmp, key)
}
}
keys = tmp
}
s.mu.RUnlock()
if len(keys) == 0 {
return m, nil
}
ctx = context.WithValue(ctx, retry.TxnStartKey, s.version)
if ctx.Value(util.RequestSourceKey) == nil {
ctx = context.WithValue(ctx, util.RequestSourceKey, *s.RequestSource)
}
bo := retry.NewBackofferWithVars(ctx, batchGetMaxBackoff, s.vars)
s.mu.RLock()
if s.mu.interceptor != nil {
// User has called snapshot.SetRPCInterceptor() to explicitly set an interceptor, we
// need to bind it to ctx so that the internal client can perceive and execute
// it before initiating an RPC request.
bo.SetCtx(interceptor.WithRPCInterceptor(bo.GetCtx(), s.mu.interceptor))
}
s.mu.RUnlock()
// Create a map to collect key-values from region servers.
var mu sync.Mutex
err := s.batchGetKeysByRegions(bo, keys, readTier, func(k, v []byte) {
// when read buffer tier, empty value means a delete record, should also collect it.
if len(v) == 0 && readTier != BatchGetBufferTier {
return
}
mu.Lock()
m[string(k)] = v
mu.Unlock()
})
s.recordBackoffInfo(bo)
if err != nil {
return nil, err
}
err = s.store.CheckVisibility(s.version)
if err != nil {
return nil, err
}
if readTier != BatchGetSnapshotTier {
return m, nil
}
// Update the cache.
s.UpdateSnapshotCache(keys, m)
return m, nil
}
type batchKeys struct {
region locate.RegionVerID
keys [][]byte
}
func (b *batchKeys) relocate(bo *retry.Backoffer, c *locate.RegionCache) (bool, error) {
loc, err := c.LocateKey(bo, b.keys[0])
if err != nil {
return false, err
}
// keys is not in order, so we have to iterate all keys.
for i := 1; i < len(b.keys); i++ {
if !loc.Contains(b.keys[i]) {
return false, nil
}
}
b.region = loc.Region
return true, nil
}
// appendBatchKeysBySize appends keys to b. It may split the keys to make
// sure each batch's size does not exceed the limit.
func appendBatchKeysBySize(b []batchKeys, region locate.RegionVerID, keys [][]byte, sizeFn func([]byte) int, limit int) []batchKeys {
var start, end int
for start = 0; start < len(keys); start = end {
var size int
for end = start; end < len(keys) && size < limit; end++ {
size += sizeFn(keys[end])
}
b = append(b, batchKeys{
region: region,
keys: keys[start:end],
})
}
return b
}
func (s *KVSnapshot) batchGetKeysByRegions(bo *retry.Backoffer, keys [][]byte, readTier int, collectF func(k, v []byte)) error {
defer func(start time.Time) {
if s.IsInternal() {
metrics.TxnCmdHistogramWithBatchGetInternal.Observe(time.Since(start).Seconds())
} else {
metrics.TxnCmdHistogramWithBatchGetGeneral.Observe(time.Since(start).Seconds())
}
}(time.Now())
groups, _, err := s.store.GetRegionCache().GroupKeysByRegion(bo, keys, nil)
if err != nil {
return err
}
if s.IsInternal() {
metrics.TxnRegionsNumHistogramWithSnapshotInternal.Observe(float64(len(groups)))
} else {
metrics.TxnRegionsNumHistogramWithSnapshot.Observe(float64(len(groups)))
}
var batches []batchKeys
for id, g := range groups {
batches = appendBatchKeysBySize(batches, id, g, func([]byte) int { return 1 }, batchGetSize)
}
if len(batches) == 0 {
return nil
}
if len(batches) == 1 {
return s.batchGetSingleRegion(bo, batches[0], readTier, collectF)
}
ch := make(chan error)
for _, batch1 := range batches {
batch := batch1
go func() {
backoffer, cancel := bo.Fork()
defer cancel()
ch <- s.batchGetSingleRegion(backoffer, batch, readTier, collectF)
}()
}
for i := 0; i < len(batches); i++ {
if e := <-ch; e != nil {
logutil.BgLogger().Debug("snapshot BatchGetWithTier failed",
zap.Error(e),
zap.Uint64("txnStartTS", s.version))
err = errors.WithStack(e)
}
}
return err
}
func (s *KVSnapshot) buildBatchGetRequest(keys [][]byte, busyThresholdMs int64, readTier int) (*tikvrpc.Request, error) {
ctx := kvrpcpb.Context{
Priority: s.priority.ToPB(),
NotFillCache: s.notFillCache,
TaskId: s.mu.taskID,
ResourceGroupTag: s.mu.resourceGroupTag,
IsolationLevel: s.isolationLevel.ToPB(),
ResourceControlContext: &kvrpcpb.ResourceControlContext{
ResourceGroupName: s.mu.resourceGroupName,
},
BusyThresholdMs: uint32(busyThresholdMs),
}
switch readTier {
case BatchGetSnapshotTier:
req := tikvrpc.NewReplicaReadRequest(tikvrpc.CmdBatchGet, &kvrpcpb.BatchGetRequest{
Keys: keys,
Version: s.version,
}, s.mu.replicaRead, &s.replicaReadSeed, ctx)
return req, nil
case BatchGetBufferTier:
if !s.isPipelined {
return nil, errors.New("only snapshot with pipelined dml can read from buffer")
}
req := tikvrpc.NewReplicaReadRequest(tikvrpc.CmdBufferBatchGet, &kvrpcpb.BufferBatchGetRequest{
Keys: keys,
Version: s.version,
}, s.mu.replicaRead, &s.replicaReadSeed, ctx)
return req, nil
default:
return nil, errors.Errorf("unknown read tier %d", readTier)
}
}
func (s *KVSnapshot) batchGetSingleRegion(bo *retry.Backoffer, batch batchKeys, readTier int, collectF func(k, v []byte)) error {
cli := NewClientHelper(s.store, &s.resolvedLocks, &s.committedLocks, false)
s.mu.RLock()
if s.mu.stats != nil {
cli.Stats = locate.NewRegionRequestRuntimeStats()
defer func() {
s.mergeRegionRequestStats(cli.Stats)
}()
}
isStaleness := s.mu.isStaleness
busyThresholdMs := s.mu.busyThreshold.Milliseconds()
s.mu.RUnlock()
pending := batch.keys
var resolvingRecordToken *int
useConfigurableKVTimeout := true
// the states in request need to keep when retry request.
var readType string
for {
s.mu.RLock()
req, err := s.buildBatchGetRequest(pending, busyThresholdMs, readTier)
if err != nil {
return err
}
req.InputRequestSource = s.GetRequestSource()
if readType != "" {
req.ReadType = readType
req.IsRetryRequest = true
}
if s.mu.resourceGroupTag == nil && s.mu.resourceGroupTagger != nil {
s.mu.resourceGroupTagger(req)
}
scope := s.mu.readReplicaScope
matchStoreLabels := s.mu.matchStoreLabels
replicaAdjuster := s.mu.replicaReadAdjuster
s.mu.RUnlock()
req.TxnScope = scope
req.ReadReplicaScope = scope
if isStaleness {
req.EnableStaleWithMixedReplicaRead()
}
timeout := client.ReadTimeoutMedium
if useConfigurableKVTimeout && s.readTimeout > 0 {
useConfigurableKVTimeout = false
timeout = s.readTimeout
}
req.MaxExecutionDurationMs = uint64(timeout.Milliseconds())
ops := make([]locate.StoreSelectorOption, 0, 2)
if len(matchStoreLabels) > 0 {
ops = append(ops, locate.WithMatchLabels(matchStoreLabels))
}
if req.ReplicaReadType.IsFollowerRead() && replicaAdjuster != nil {
op, readType := replicaAdjuster(len(pending))
if op != nil {
ops = append(ops, op)
}
req.ReplicaReadType = readType
}
resp, _, _, err := cli.SendReqCtx(bo, req, batch.region, timeout, tikvrpc.TiKV, "", ops...)
if err != nil {
return err
}
regionErr, err := resp.GetRegionError()
if err != nil {
return err
}
readType = req.ReadType
if regionErr != nil {
// For other region error and the fake region error, backoff because
// there's something wrong.
// For the real EpochNotMatch error, don't backoff.
if regionErr.GetEpochNotMatch() == nil || locate.IsFakeRegionError(regionErr) {
err = bo.Backoff(retry.BoRegionMiss, errors.New(regionErr.String()))
if err != nil {
return err
}
}
same, err := batch.relocate(bo, cli.regionCache)
if err != nil {
return err
}
if same {
continue
}
return s.batchGetKeysByRegions(bo, pending, readTier, collectF)
}
if resp.Resp == nil {
return errors.WithStack(tikverr.ErrBodyMissing)
}
var (
lockedKeys [][]byte
locks []*txnlock.Lock
keyErr *kvrpcpb.KeyError
pairs []*kvrpcpb.KvPair
details *kvrpcpb.ExecDetailsV2
)
switch v := resp.Resp.(type) {
case *kvrpcpb.BatchGetResponse:
keyErr = v.GetError()
pairs = v.Pairs
details = v.GetExecDetailsV2()
case *kvrpcpb.BufferBatchGetResponse:
keyErr = v.GetError()
pairs = v.Pairs
details = v.GetExecDetailsV2()
default:
return errors.Errorf("unknown response %T", v)
}
if keyErr != nil {
// If a response-level error happens, skip reading pairs.
lock, err := txnlock.ExtractLockFromKeyErr(keyErr)
if err != nil {
return err
}
lockedKeys = append(lockedKeys, lock.Key)
locks = append(locks, lock)
} else {
for _, pair := range pairs {
keyErr := pair.GetError()
if keyErr == nil {
collectF(pair.GetKey(), pair.GetValue())
continue
}
lock, err := txnlock.ExtractLockFromKeyErr(keyErr)
if err != nil {
return err
}
lockedKeys = append(lockedKeys, lock.Key)
locks = append(locks, lock)
}
}
if details != nil {
readKeys := len(pairs)
var readTime float64
if timeDetail := details.GetTimeDetailV2(); timeDetail != nil {
readTime = float64(timeDetail.GetKvReadWallTimeNs()) / 1000000000.
} else if timeDetail := details.GetTimeDetail(); timeDetail != nil {
readTime = float64(timeDetail.GetKvReadWallTimeMs()) / 1000.
}
readSize := float64(details.GetScanDetailV2().GetProcessedVersionsSize())
metrics.ObserveReadSLI(uint64(readKeys), readTime, readSize)
s.mergeExecDetail(details)
}
if len(lockedKeys) > 0 {
if resolvingRecordToken == nil {
token := cli.RecordResolvingLocks(locks, s.version)
resolvingRecordToken = &token
defer cli.ResolveLocksDone(s.version, *resolvingRecordToken)
} else {
cli.UpdateResolvingLocks(locks, s.version, *resolvingRecordToken)
}
// we need to read from leader after resolving the lock.
if isStaleness {
isStaleness = false
busyThresholdMs = 0
}
resolveLocksOpts := txnlock.ResolveLocksOptions{
CallerStartTS: s.version,
Locks: locks,
Detail: s.getResolveLockDetail(),
}
resolveLocksRes, err := cli.ResolveLocksWithOpts(bo, resolveLocksOpts)
msBeforeExpired := resolveLocksRes.TTL
if err != nil {
return err
}
if msBeforeExpired > 0 {
err = bo.BackoffWithMaxSleepTxnLockFast(int(msBeforeExpired), errors.Errorf("BatchGetWithTier lockedKeys: %d", len(lockedKeys)))
if err != nil {
return err
}
}
// Only reduce pending keys when there is no response-level error. Otherwise,
// lockedKeys may be incomplete.
if keyErr == nil {
pending = lockedKeys
}
continue
}
return nil
}
}
const getMaxBackoff = 20000
// Get gets the value for key k from snapshot.
func (s *KVSnapshot) Get(ctx context.Context, k []byte) ([]byte, error) {
defer func(start time.Time) {
if s.IsInternal() {
metrics.TxnCmdHistogramWithGetInternal.Observe(time.Since(start).Seconds())
} else {
metrics.TxnCmdHistogramWithGetGeneral.Observe(time.Since(start).Seconds())
}
}(time.Now())
s.mu.RLock()
// Check the cached values first.
if s.mu.cached != nil {
if value, ok := s.mu.cached[string(k)]; ok {
atomic.AddInt64(&s.mu.hitCnt, 1)
s.mu.RUnlock()
if len(value) == 0 {
return nil, tikverr.ErrNotExist
}
return value, nil
}
}
if _, err := util.EvalFailpoint("snapshot-get-cache-fail"); err == nil {
if ctx.Value("TestSnapshotCache") != nil {
s.mu.RUnlock()
panic("cache miss")
}
}
ctx = context.WithValue(ctx, retry.TxnStartKey, s.version)
if ctx.Value(util.RequestSourceKey) == nil {
ctx = context.WithValue(ctx, util.RequestSourceKey, *s.RequestSource)
}
bo := retry.NewBackofferWithVars(ctx, getMaxBackoff, s.vars)
if s.mu.interceptor != nil {
// User has called snapshot.SetRPCInterceptor() to explicitly set an interceptor, we
// need to bind it to ctx so that the internal client can perceive and execute
// it before initiating an RPC request.
bo.SetCtx(interceptor.WithRPCInterceptor(bo.GetCtx(), s.mu.interceptor))
}
s.mu.RUnlock()
val, err := s.get(ctx, bo, k)
s.recordBackoffInfo(bo)
if err != nil {
return nil, err
}
err = s.store.CheckVisibility(s.version)
if err != nil {
return nil, err
}
// Update the cache.
s.UpdateSnapshotCache([][]byte{k}, map[string][]byte{string(k): val})
if len(val) == 0 {
return nil, tikverr.ErrNotExist
}
return val, nil
}
func (s *KVSnapshot) get(ctx context.Context, bo *retry.Backoffer, k []byte) ([]byte, error) {
if span := opentracing.SpanFromContext(ctx); span != nil && span.Tracer() != nil {
span1 := span.Tracer().StartSpan("tikvSnapshot.get", opentracing.ChildOf(span.Context()))
defer span1.Finish()
opentracing.ContextWithSpan(ctx, span1)
}
cli := NewClientHelper(s.store, &s.resolvedLocks, &s.committedLocks, true)
s.mu.RLock()
if s.mu.stats != nil {
cli.Stats = locate.NewRegionRequestRuntimeStats()
defer func() {
s.mergeRegionRequestStats(cli.Stats)
}()
}
req := tikvrpc.NewReplicaReadRequest(tikvrpc.CmdGet,
&kvrpcpb.GetRequest{
Key: k,
Version: s.version,
}, s.mu.replicaRead, &s.replicaReadSeed, kvrpcpb.Context{
Priority: s.priority.ToPB(),
NotFillCache: s.notFillCache,
TaskId: s.mu.taskID,
ResourceGroupTag: s.mu.resourceGroupTag,
IsolationLevel: s.isolationLevel.ToPB(),
ResourceControlContext: &kvrpcpb.ResourceControlContext{
ResourceGroupName: s.mu.resourceGroupName,
},
BusyThresholdMs: uint32(s.mu.busyThreshold.Milliseconds()),
})
req.InputRequestSource = s.GetRequestSource()
if s.mu.resourceGroupTag == nil && s.mu.resourceGroupTagger != nil {
s.mu.resourceGroupTagger(req)
}
isStaleness := s.mu.isStaleness
matchStoreLabels := s.mu.matchStoreLabels
scope := s.mu.readReplicaScope
replicaAdjuster := s.mu.replicaReadAdjuster
s.mu.RUnlock()
req.TxnScope = scope
req.ReadReplicaScope = scope
var ops []locate.StoreSelectorOption
if isStaleness {
req.EnableStaleWithMixedReplicaRead()
}
if len(matchStoreLabels) > 0 {
ops = append(ops, locate.WithMatchLabels(matchStoreLabels))
}
if req.ReplicaReadType.IsFollowerRead() && replicaAdjuster != nil {
op, readType := replicaAdjuster(1)
if op != nil {
ops = append(ops, op)
}
req.ReplicaReadType = readType
}
var firstLock *txnlock.Lock
var resolvingRecordToken *int
useConfigurableKVTimeout := true
for {
util.EvalFailpoint("beforeSendPointGet")
loc, err := s.store.GetRegionCache().LocateKey(bo, k)
if err != nil {
return nil, err
}
timeout := client.ReadTimeoutShort
if useConfigurableKVTimeout && s.readTimeout > 0 {
useConfigurableKVTimeout = false
timeout = s.readTimeout
}
req.MaxExecutionDurationMs = uint64(timeout.Milliseconds())
resp, _, _, err := cli.SendReqCtx(bo, req, loc.Region, timeout, tikvrpc.TiKV, "", ops...)
if err != nil {
return nil, err
}
regionErr, err := resp.GetRegionError()
if err != nil {
return nil, err
}
if regionErr != nil {
// For other region error and the fake region error, backoff because
// there's something wrong.
// For the real EpochNotMatch error, don't backoff.
if regionErr.GetEpochNotMatch() == nil || locate.IsFakeRegionError(regionErr) {
err = bo.Backoff(retry.BoRegionMiss, errors.New(regionErr.String()))
if err != nil {
return nil, err
}
}
continue
}
if resp.Resp == nil {
return nil, errors.WithStack(tikverr.ErrBodyMissing)
}
cmdGetResp := resp.Resp.(*kvrpcpb.GetResponse)
if cmdGetResp.ExecDetailsV2 != nil {
readKeys := len(cmdGetResp.Value)
var readTime float64
if timeDetail := cmdGetResp.ExecDetailsV2.GetTimeDetailV2(); timeDetail != nil {
readTime = float64(timeDetail.GetKvReadWallTimeNs()) / 1000000000.
} else if timeDetail := cmdGetResp.ExecDetailsV2.GetTimeDetail(); timeDetail != nil {
readTime = float64(timeDetail.GetKvReadWallTimeMs()) / 1000.
}
readSize := float64(cmdGetResp.ExecDetailsV2.GetScanDetailV2().GetProcessedVersionsSize())
metrics.ObserveReadSLI(uint64(readKeys), readTime, readSize)
s.mergeExecDetail(cmdGetResp.ExecDetailsV2)
}
val := cmdGetResp.GetValue()
if keyErr := cmdGetResp.GetError(); keyErr != nil {
lock, err := txnlock.ExtractLockFromKeyErr(keyErr)
if err != nil {
return nil, err
}
if firstLock == nil {
// we need to read from leader after resolving the lock.
if isStaleness {
req.DisableStaleReadMeetLock()
req.BusyThresholdMs = 0
}
firstLock = lock
} else if s.version == maxTimestamp && firstLock.TxnID != lock.TxnID {
// If it is an autocommit point get, it needs to be blocked only
// by the first lock it meets. During retries, if the encountered
// lock is different from the first one, we can omit it.
cli.resolvedLocks.Put(lock.TxnID)
continue
}
locks := []*txnlock.Lock{lock}
if resolvingRecordToken == nil {
token := cli.RecordResolvingLocks(locks, s.version)
resolvingRecordToken = &token
defer cli.ResolveLocksDone(s.version, *resolvingRecordToken)
} else {
cli.UpdateResolvingLocks(locks, s.version, *resolvingRecordToken)
}
resolveLocksOpts := txnlock.ResolveLocksOptions{
CallerStartTS: s.version,
Locks: locks,
Detail: s.getResolveLockDetail(),
}
resolveLocksRes, err := cli.ResolveLocksWithOpts(bo, resolveLocksOpts)
if err != nil {
return nil, err
}
msBeforeExpired := resolveLocksRes.TTL
if msBeforeExpired > 0 {
err = bo.BackoffWithMaxSleepTxnLockFast(int(msBeforeExpired), errors.New(keyErr.String()))
if err != nil {
return nil, err
}
}
continue
}
return val, nil
}
}
func (s *KVSnapshot) mergeExecDetail(detail *kvrpcpb.ExecDetailsV2) {
s.mu.Lock()
defer s.mu.Unlock()
if detail == nil || s.mu.stats == nil {
return
}
if s.mu.stats.resolveLockDetail == nil {
s.mu.stats.resolveLockDetail = &util.ResolveLockDetail{}
}
if s.mu.stats.scanDetail == nil {
s.mu.stats.scanDetail = &util.ScanDetail{
ResolveLock: s.mu.stats.resolveLockDetail,
}
}
if s.mu.stats.timeDetail == nil {
s.mu.stats.timeDetail = &util.TimeDetail{}
}
s.mu.stats.scanDetail.MergeFromScanDetailV2(detail.ScanDetailV2)
s.mu.stats.timeDetail.MergeFromTimeDetail(detail.TimeDetailV2, detail.TimeDetail)
}
// Iter return a list of key-value pair after `k`.
func (s *KVSnapshot) Iter(k []byte, upperBound []byte) (unionstore.Iterator, error) {
scanner, err := newScanner(s, k, upperBound, s.scanBatchSize, false)
return scanner, err
}
// IterReverse creates a reversed Iterator positioned on the first entry which key is less than k.
func (s *KVSnapshot) IterReverse(k, lowerBound []byte) (unionstore.Iterator, error) {
scanner, err := newScanner(s, lowerBound, k, s.scanBatchSize, true)
return scanner, err
}
// SetNotFillCache indicates whether tikv should skip filling cache when
// loading data.
func (s *KVSnapshot) SetNotFillCache(b bool) {
s.notFillCache = b
}
// SetKeyOnly indicates if tikv can return only keys.
func (s *KVSnapshot) SetKeyOnly(b bool) {
s.keyOnly = b
}
// SetScanBatchSize sets the scan batchSize used to scan data from tikv.
func (s *KVSnapshot) SetScanBatchSize(batchSize int) {
s.scanBatchSize = batchSize
}
// SetReplicaRead sets up the replica read type.
func (s *KVSnapshot) SetReplicaRead(readType kv.ReplicaReadType) {
s.mu.Lock()
defer s.mu.Unlock()
s.mu.replicaRead = readType
}
// SetIsolationLevel sets the isolation level used to scan data from tikv.
func (s *KVSnapshot) SetIsolationLevel(level IsoLevel) {
s.isolationLevel = level
}
// SetSampleStep skips 'step - 1' number of keys after each returned key.
func (s *KVSnapshot) SetSampleStep(step uint32) {
s.sampleStep = step
}
// SetPriority sets the priority for tikv to execute commands.
func (s *KVSnapshot) SetPriority(pri txnutil.Priority) {
s.priority = pri
}
// SetTaskID marks current task's unique ID to allow TiKV to schedule
// tasks more fairly.
func (s *KVSnapshot) SetTaskID(id uint64) {
s.mu.Lock()
defer s.mu.Unlock()
s.mu.taskID = id
}
// SetRuntimeStats sets the stats to collect runtime statistics.
// Set it to nil to clear stored stats.
func (s *KVSnapshot) SetRuntimeStats(stats *SnapshotRuntimeStats) {
s.mu.Lock()
defer s.mu.Unlock()
s.mu.stats = stats
}
// SetTxnScope is same as SetReadReplicaScope, keep it in order to keep compatible for now.
func (s *KVSnapshot) SetTxnScope(scope string) {
s.mu.Lock()
defer s.mu.Unlock()
s.mu.readReplicaScope = scope
}
// SetReadReplicaScope set read replica scope
func (s *KVSnapshot) SetReadReplicaScope(scope string) {
s.mu.Lock()
defer s.mu.Unlock()
s.mu.readReplicaScope = scope
}
// SetReplicaReadAdjuster set replica read adjust function
func (s *KVSnapshot) SetReplicaReadAdjuster(f ReplicaReadAdjuster) {
s.mu.Lock()
defer s.mu.Unlock()
s.mu.replicaReadAdjuster = f
}
// SetLoadBasedReplicaReadThreshold sets the TiKV wait duration threshold of
// enabling replica read automatically
func (s *KVSnapshot) SetLoadBasedReplicaReadThreshold(busyThreshold time.Duration) {
s.mu.Lock()
defer s.mu.Unlock()
if busyThreshold <= 0 || busyThreshold.Milliseconds() > math.MaxUint32 {
s.mu.busyThreshold = 0
} else {
s.mu.busyThreshold = busyThreshold
}
}
// SetIsStalenessReadOnly indicates whether the transaction is staleness read only transaction
func (s *KVSnapshot) SetIsStalenessReadOnly(b bool) {
s.mu.Lock()
defer s.mu.Unlock()
s.mu.isStaleness = b
}
// SetMatchStoreLabels sets up labels to filter target stores.
func (s *KVSnapshot) SetMatchStoreLabels(labels []*metapb.StoreLabel) {
s.mu.Lock()
defer s.mu.Unlock()
s.mu.matchStoreLabels = labels
}
// SetResourceGroupTag sets resource group tag of the kv request.
func (s *KVSnapshot) SetResourceGroupTag(tag []byte) {
s.mu.Lock()
defer s.mu.Unlock()
s.mu.resourceGroupTag = tag
}
// SetResourceGroupTagger sets resource group tagger of the kv request.
// Before sending the request, if resourceGroupTag is not nil, use
// resourceGroupTag directly, otherwise use resourceGroupTagger.
func (s *KVSnapshot) SetResourceGroupTagger(tagger tikvrpc.ResourceGroupTagger) {
s.mu.Lock()
defer s.mu.Unlock()
s.mu.resourceGroupTagger = tagger
}
// SetRPCInterceptor sets interceptor.RPCInterceptor for the snapshot.
// interceptor.RPCInterceptor will be executed before each RPC request is initiated.
// Note that SetRPCInterceptor will replace the previously set interceptor.
func (s *KVSnapshot) SetRPCInterceptor(it interceptor.RPCInterceptor) {
s.mu.Lock()
defer s.mu.Unlock()
s.mu.interceptor = it
}
// AddRPCInterceptor adds an interceptor, the order of addition is the order of execution.
// the chained interceptors will be dedupcated by its name.
func (s *KVSnapshot) AddRPCInterceptor(it interceptor.RPCInterceptor) {
s.mu.Lock()
defer s.mu.Unlock()
if s.mu.interceptor == nil {
s.mu.interceptor = it
return
}
s.mu.interceptor = interceptor.ChainRPCInterceptors(s.mu.interceptor, it)
}
// SetResourceGroupName set resource group name of the kv request.
func (s *KVSnapshot) SetResourceGroupName(name string) {
s.mu.Lock()
defer s.mu.Unlock()
s.mu.resourceGroupName = name
}
// SnapCacheHitCount gets the snapshot cache hit count. Only for test.
func (s *KVSnapshot) SnapCacheHitCount() int {
return int(atomic.LoadInt64(&s.mu.hitCnt))
}
// SnapCacheSize gets the snapshot cache size. Only for test.
func (s *KVSnapshot) SnapCacheSize() int {
s.mu.RLock()
defer s.mu.RUnlock()
return len(s.mu.cached)
}
// SnapCache gets the copy of snapshot cache. Only for test.
func (s *KVSnapshot) SnapCache() map[string][]byte {
s.mu.RLock()
defer s.mu.RUnlock()