-
Notifications
You must be signed in to change notification settings - Fork 3.8k
/
txn_interceptor_span_refresher_test.go
622 lines (525 loc) · 20.7 KB
/
txn_interceptor_span_refresher_test.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
// Copyright 2018 The Cockroach Authors.
//
// Use of this software is governed by the Business Source License
// included in the file licenses/BSL.txt.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0, included in the file
// licenses/APL.txt.
package kv
import (
"context"
"testing"
"github.com/cockroachdb/cockroach/pkg/roachpb"
"github.com/cockroachdb/cockroach/pkg/settings/cluster"
"github.com/cockroachdb/cockroach/pkg/util/hlc"
"github.com/cockroachdb/cockroach/pkg/util/leaktest"
"github.com/cockroachdb/cockroach/pkg/util/metric"
"github.com/stretchr/testify/require"
)
func makeMockTxnSpanRefresher() (txnSpanRefresher, *mockLockedSender) {
mockSender := &mockLockedSender{}
return txnSpanRefresher{
st: cluster.MakeTestingClusterSettings(),
knobs: new(ClientTestingKnobs),
wrapped: mockSender,
canAutoRetry: true,
autoRetryCounter: metric.NewCounter(metaAutoRetriesRates),
}, mockSender
}
// TestTxnSpanRefresherCollectsSpans tests that the txnSpanRefresher collects
// spans for requests that succeeded and would need to be refreshed if the
// transaction's provisional commit timestamp moved forward.
func TestTxnSpanRefresherCollectsSpans(t *testing.T) {
defer leaktest.AfterTest(t)()
ctx := context.Background()
tsr, mockSender := makeMockTxnSpanRefresher()
txn := makeTxnProto()
keyA, keyB := roachpb.Key("a"), roachpb.Key("b")
keyC, keyD := roachpb.Key("c"), roachpb.Key("d")
// Basic case.
var ba roachpb.BatchRequest
ba.Header = roachpb.Header{Txn: &txn}
getArgs := roachpb.GetRequest{RequestHeader: roachpb.RequestHeader{Key: keyA}}
putArgs := roachpb.PutRequest{RequestHeader: roachpb.RequestHeader{Key: keyA}}
delRangeArgs := roachpb.DeleteRangeRequest{RequestHeader: roachpb.RequestHeader{Key: keyA, EndKey: keyB}}
ba.Add(&getArgs, &putArgs, &delRangeArgs)
br, pErr := tsr.SendLocked(ctx, ba)
require.Nil(t, pErr)
require.NotNil(t, br)
require.Equal(t, []roachpb.Span{getArgs.Span(), delRangeArgs.Span()}, tsr.refreshSpans)
require.False(t, tsr.refreshInvalid)
require.Equal(t, int64(3), tsr.refreshSpansBytes)
require.Equal(t, txn.ReadTimestamp, tsr.refreshedTimestamp)
// Scan with limit. Only the scanned keys are added to the refresh spans.
ba.Requests = nil
scanArgs := roachpb.ScanRequest{RequestHeader: roachpb.RequestHeader{Key: keyB, EndKey: keyD}}
ba.Add(&scanArgs)
mockSender.MockSend(func(ba roachpb.BatchRequest) (*roachpb.BatchResponse, *roachpb.Error) {
require.Len(t, ba.Requests, 1)
require.IsType(t, &roachpb.ScanRequest{}, ba.Requests[0].GetInner())
br = ba.CreateReply()
br.Txn = ba.Txn
br.Responses[0].GetScan().ResumeSpan = &roachpb.Span{Key: keyC, EndKey: keyD}
return br, nil
})
br, pErr = tsr.SendLocked(ctx, ba)
require.Nil(t, pErr)
require.NotNil(t, br)
require.Equal(t,
[]roachpb.Span{getArgs.Span(), delRangeArgs.Span(), {Key: scanArgs.Key, EndKey: keyC}},
tsr.refreshSpans)
require.False(t, tsr.refreshInvalid)
require.Equal(t, int64(5), tsr.refreshSpansBytes)
require.Equal(t, txn.ReadTimestamp, tsr.refreshedTimestamp)
}
// TestTxnSpanRefresherRefreshesTransactions tests that the txnSpanRefresher
// refreshes the transaction's read and write spans if it observes an error
// that indicates that the transaction's timestamp is being pushed.
func TestTxnSpanRefresherRefreshesTransactions(t *testing.T) {
defer leaktest.AfterTest(t)()
txn := makeTxnProto()
txn.UpdateObservedTimestamp(1, txn.WriteTimestamp.Add(20, 0))
keyA, keyB := roachpb.Key("a"), roachpb.Key("b")
cases := []struct {
// If name is not set, the test will use pErr.String().
name string
// OnFirstSend, if set, is invoked to evaluate the batch. If not set, pErr()
// will be used to provide an error.
onFirstSend func(request roachpb.BatchRequest) (*roachpb.BatchResponse, *roachpb.Error)
pErr func() *roachpb.Error
expRefresh bool
expRefreshTS hlc.Timestamp
}{
{
pErr: func() *roachpb.Error {
return roachpb.NewError(
&roachpb.TransactionRetryError{Reason: roachpb.RETRY_SERIALIZABLE})
},
expRefresh: true,
expRefreshTS: txn.WriteTimestamp,
},
{
pErr: func() *roachpb.Error {
return roachpb.NewError(
&roachpb.TransactionRetryError{Reason: roachpb.RETRY_WRITE_TOO_OLD})
},
expRefresh: true,
expRefreshTS: txn.WriteTimestamp,
},
{
pErr: func() *roachpb.Error {
return roachpb.NewError(
&roachpb.WriteTooOldError{ActualTimestamp: txn.WriteTimestamp.Add(15, 0)})
},
expRefresh: true,
expRefreshTS: txn.WriteTimestamp.Add(15, 0),
},
{
pErr: func() *roachpb.Error {
pErr := roachpb.NewError(&roachpb.ReadWithinUncertaintyIntervalError{})
pErr.OriginNode = 1
return pErr
},
expRefresh: true,
expRefreshTS: txn.WriteTimestamp.Add(20, 0), // see UpdateObservedTimestamp
},
{
pErr: func() *roachpb.Error {
pErr := roachpb.NewError(
&roachpb.ReadWithinUncertaintyIntervalError{
ExistingTimestamp: txn.WriteTimestamp.Add(25, 0),
})
pErr.OriginNode = 1
return pErr
},
expRefresh: true,
expRefreshTS: txn.WriteTimestamp.Add(25, 1), // see ExistingTimestamp
},
{
pErr: func() *roachpb.Error {
return roachpb.NewErrorf("no refresh")
},
expRefresh: false,
},
{
name: "write_too_old flag",
onFirstSend: func(ba roachpb.BatchRequest) (*roachpb.BatchResponse, *roachpb.Error) {
br := ba.CreateReply()
br.Txn = ba.Txn.Clone()
br.Txn.WriteTooOld = true
br.Txn.WriteTimestamp = txn.WriteTimestamp.Add(20, 1)
return br, nil
},
expRefresh: true,
expRefreshTS: txn.WriteTimestamp.Add(20, 1), // Same as br.Txn.WriteTimestamp.
},
}
for _, tc := range cases {
name := tc.name
if name == "" {
name = tc.pErr().String()
}
if (tc.onFirstSend != nil) == (tc.pErr != nil) {
panic("exactly one tc.onFirstSend and tc.pErr must be set")
}
t.Run(name, func(t *testing.T) {
ctx := context.Background()
tsr, mockSender := makeMockTxnSpanRefresher()
// Collect some refresh spans.
var ba roachpb.BatchRequest
ba.Header = roachpb.Header{Txn: txn.Clone()} // clone txn since it's shared between subtests
getArgs := roachpb.GetRequest{RequestHeader: roachpb.RequestHeader{Key: keyA}}
delRangeArgs := roachpb.DeleteRangeRequest{RequestHeader: roachpb.RequestHeader{Key: keyA, EndKey: keyB}}
ba.Add(&getArgs, &delRangeArgs)
br, pErr := tsr.SendLocked(ctx, ba)
require.Nil(t, pErr)
require.NotNil(t, br)
require.Equal(t, []roachpb.Span{getArgs.Span(), delRangeArgs.Span()}, tsr.refreshSpans)
require.False(t, tsr.refreshInvalid)
require.Equal(t, int64(3), tsr.refreshSpansBytes)
require.Equal(t, br.Txn.ReadTimestamp, tsr.refreshedTimestamp)
// Hook up a chain of mocking functions.
onFirstSend := func(ba roachpb.BatchRequest) (*roachpb.BatchResponse, *roachpb.Error) {
require.Len(t, ba.Requests, 1)
require.IsType(t, &roachpb.PutRequest{}, ba.Requests[0].GetInner())
// Return a transaction retry error.
if tc.onFirstSend != nil {
return tc.onFirstSend(ba)
}
pErr = tc.pErr()
pErr.SetTxn(ba.Txn)
return nil, pErr
}
onSecondSend := func(ba roachpb.BatchRequest) (*roachpb.BatchResponse, *roachpb.Error) {
// Should not be called if !expRefresh.
require.True(t, tc.expRefresh)
require.Len(t, ba.Requests, 1)
require.IsType(t, &roachpb.PutRequest{}, ba.Requests[0].GetInner())
// Don't return an error.
br = ba.CreateReply()
br.Txn = ba.Txn
return br, nil
}
onRefresh := func(ba roachpb.BatchRequest) (*roachpb.BatchResponse, *roachpb.Error) {
// Should not be called if !expRefresh.
require.True(t, tc.expRefresh)
require.Len(t, ba.Requests, 2)
require.IsType(t, &roachpb.RefreshRequest{}, ba.Requests[0].GetInner())
require.IsType(t, &roachpb.RefreshRangeRequest{}, ba.Requests[1].GetInner())
refReq := ba.Requests[0].GetRefresh()
require.Equal(t, getArgs.Span(), refReq.Span())
refRngReq := ba.Requests[1].GetRefreshRange()
require.Equal(t, delRangeArgs.Span(), refRngReq.Span())
br = ba.CreateReply()
br.Txn = ba.Txn
return br, nil
}
mockSender.ChainMockSend(onFirstSend, onRefresh, onSecondSend)
// Send a request that will hit a retry error. Depending on the
// error type, we may or may not perform a refresh.
ba.Requests = nil
putArgs := roachpb.PutRequest{RequestHeader: roachpb.RequestHeader{Key: keyA}}
ba.Add(&putArgs)
br, pErr = tsr.SendLocked(ctx, ba)
if tc.expRefresh {
require.Nil(t, pErr)
require.NotNil(t, br)
require.Equal(t, tc.expRefreshTS, br.Txn.WriteTimestamp)
require.Equal(t, tc.expRefreshTS, br.Txn.ReadTimestamp)
require.Equal(t, tc.expRefreshTS, tsr.refreshedTimestamp)
} else {
require.Nil(t, br)
require.NotNil(t, pErr)
require.Equal(t, ba.Txn.ReadTimestamp, tsr.refreshedTimestamp)
}
})
}
}
// TestTxnSpanRefresherMaxRefreshAttempts tests that the txnSpanRefresher
// attempts some number of retries before giving up and passing retryable
// errors back up the stack.
func TestTxnSpanRefresherMaxRefreshAttempts(t *testing.T) {
defer leaktest.AfterTest(t)()
ctx := context.Background()
tsr, mockSender := makeMockTxnSpanRefresher()
txn := makeTxnProto()
keyA, keyB := roachpb.Key("a"), roachpb.Key("b")
// Set MaxTxnRefreshAttempts to 2.
tsr.knobs.MaxTxnRefreshAttempts = 2
// Collect some refresh spans.
var ba roachpb.BatchRequest
ba.Header = roachpb.Header{Txn: &txn}
scanArgs := roachpb.ScanRequest{RequestHeader: roachpb.RequestHeader{Key: keyA, EndKey: keyB}}
ba.Add(&scanArgs)
br, pErr := tsr.SendLocked(ctx, ba)
require.Nil(t, pErr)
require.NotNil(t, br)
require.Equal(t, []roachpb.Span{scanArgs.Span()}, tsr.refreshSpans)
require.False(t, tsr.refreshInvalid)
require.Equal(t, int64(2), tsr.refreshSpansBytes)
require.Equal(t, br.Txn.ReadTimestamp, tsr.refreshedTimestamp)
// Hook up a chain of mocking functions.
onPut := func(ba roachpb.BatchRequest) (*roachpb.BatchResponse, *roachpb.Error) {
require.Len(t, ba.Requests, 1)
require.IsType(t, &roachpb.PutRequest{}, ba.Requests[0].GetInner())
// Return a transaction retry error.
return nil, roachpb.NewErrorWithTxn(
roachpb.NewTransactionRetryError(roachpb.RETRY_SERIALIZABLE, ""), ba.Txn)
}
refreshes := 0
onRefresh := func(ba roachpb.BatchRequest) (*roachpb.BatchResponse, *roachpb.Error) {
refreshes++
require.Len(t, ba.Requests, 1)
require.IsType(t, &roachpb.RefreshRangeRequest{}, ba.Requests[0].GetInner())
refReq := ba.Requests[0].GetRefreshRange()
require.Equal(t, scanArgs.Span(), refReq.Span())
br = ba.CreateReply()
br.Txn = ba.Txn
return br, nil
}
unexpected := func(ba roachpb.BatchRequest) (*roachpb.BatchResponse, *roachpb.Error) {
require.Fail(t, "unexpected")
return nil, nil
}
mockSender.ChainMockSend(onPut, onRefresh, onPut, onRefresh, onPut, unexpected)
// Send a request that will hit a retry error. It will successfully retry
// but continue to hit a retry error each time it is attempted. Eventually,
// the txnSpanRefresher should give up and propagate the error.
ba.Requests = nil
putArgs := roachpb.PutRequest{RequestHeader: roachpb.RequestHeader{Key: keyB}}
ba.Add(&putArgs)
br, pErr = tsr.SendLocked(ctx, ba)
require.Nil(t, br)
require.NotNil(t, pErr)
exp := roachpb.NewTransactionRetryError(roachpb.RETRY_SERIALIZABLE, "")
require.Equal(t, exp, pErr.GetDetail())
require.Equal(t, tsr.knobs.MaxTxnRefreshAttempts, refreshes)
}
// TestTxnSpanRefresherMaxTxnRefreshSpansBytes tests that the txnSpanRefresher
// only collects up to kv.transaction.max_refresh_spans_bytes refresh bytes
// before throwing away refresh spans and refusing to attempt to refresh
// transactions.
func TestTxnSpanRefresherMaxTxnRefreshSpansBytes(t *testing.T) {
defer leaktest.AfterTest(t)()
ctx := context.Background()
tsr, _ := makeMockTxnSpanRefresher()
txn := makeTxnProto()
keyA, keyB := roachpb.Key("a"), roachpb.Key("b")
keyC, keyD := roachpb.Key("c"), roachpb.Key("d")
// Set MaxTxnRefreshSpansBytes limit to 3 bytes.
MaxTxnRefreshSpansBytes.Override(&tsr.st.SV, 3)
// Send a batch below the limit.
var ba roachpb.BatchRequest
ba.Header = roachpb.Header{Txn: &txn}
scanArgs := roachpb.ScanRequest{RequestHeader: roachpb.RequestHeader{Key: keyA, EndKey: keyB}}
ba.Add(&scanArgs)
br, pErr := tsr.SendLocked(ctx, ba)
require.Nil(t, pErr)
require.NotNil(t, br)
require.Equal(t, []roachpb.Span{scanArgs.Span()}, tsr.refreshSpans)
require.False(t, tsr.refreshInvalid)
require.Equal(t, int64(2), tsr.refreshSpansBytes)
require.Equal(t, txn.ReadTimestamp, tsr.refreshedTimestamp)
// Send another batch that pushes us above the limit. The refresh spans
// should become invalid.
ba.Requests = nil
scanArgs2 := roachpb.ScanRequest{RequestHeader: roachpb.RequestHeader{Key: keyB, EndKey: keyC}}
ba.Add(&scanArgs2)
br, pErr = tsr.SendLocked(ctx, ba)
require.Nil(t, pErr)
require.NotNil(t, br)
require.Equal(t, []roachpb.Span(nil), tsr.refreshSpans)
require.True(t, tsr.refreshInvalid)
require.Equal(t, int64(0), tsr.refreshSpansBytes)
require.Equal(t, txn.ReadTimestamp, tsr.refreshedTimestamp)
// Once invalid, the refresh spans should stay invalid.
ba.Requests = nil
scanArgs3 := roachpb.ScanRequest{RequestHeader: roachpb.RequestHeader{Key: keyC, EndKey: keyD}}
ba.Add(&scanArgs3)
br, pErr = tsr.SendLocked(ctx, ba)
require.Nil(t, pErr)
require.NotNil(t, br)
require.Equal(t, []roachpb.Span(nil), tsr.refreshSpans)
require.True(t, tsr.refreshInvalid)
require.Equal(t, int64(0), tsr.refreshSpansBytes)
require.Equal(t, txn.ReadTimestamp, tsr.refreshedTimestamp)
}
// TestTxnSpanRefresherAssignsCanCommitAtHigherTimestamp tests that the
// txnSpanRefresher assigns the CanCommitAtHigherTimestamp flag on EndTxn
// requests.
func TestTxnSpanRefresherAssignsCanCommitAtHigherTimestamp(t *testing.T) {
defer leaktest.AfterTest(t)()
ctx := context.Background()
tsr, mockSender := makeMockTxnSpanRefresher()
txn := makeTxnProto()
keyA, keyB := roachpb.Key("a"), roachpb.Key("b")
keyC, keyD := roachpb.Key("c"), roachpb.Key("d")
// Set MaxTxnRefreshSpansBytes limit to 3 bytes.
MaxTxnRefreshSpansBytes.Override(&tsr.st.SV, 3)
// Send an EndTxn request. Should set CanCommitAtHigherTimestamp flag.
var ba roachpb.BatchRequest
ba.Header = roachpb.Header{Txn: &txn}
ba.Add(&roachpb.EndTxnRequest{})
mockSender.MockSend(func(ba roachpb.BatchRequest) (*roachpb.BatchResponse, *roachpb.Error) {
require.Len(t, ba.Requests, 1)
require.IsType(t, &roachpb.EndTxnRequest{}, ba.Requests[0].GetInner())
require.True(t, ba.Requests[0].GetEndTxn().CanCommitAtHigherTimestamp)
br := ba.CreateReply()
br.Txn = ba.Txn
return br, nil
})
br, pErr := tsr.SendLocked(ctx, ba)
require.Nil(t, pErr)
require.NotNil(t, br)
// Send a batch below the limit to collect refresh spans.
ba.Requests = nil
scanArgs := roachpb.ScanRequest{RequestHeader: roachpb.RequestHeader{Key: keyA, EndKey: keyB}}
ba.Add(&scanArgs)
mockSender.Reset()
br, pErr = tsr.SendLocked(ctx, ba)
require.Nil(t, pErr)
require.NotNil(t, br)
require.Equal(t, []roachpb.Span{scanArgs.Span()}, tsr.refreshSpans)
require.False(t, tsr.refreshInvalid)
// Send another EndTxn request. Should NOT set CanCommitAtHigherTimestamp flag.
ba.Requests = nil
ba.Add(&roachpb.EndTxnRequest{})
mockSender.MockSend(func(ba roachpb.BatchRequest) (*roachpb.BatchResponse, *roachpb.Error) {
require.Len(t, ba.Requests, 1)
require.IsType(t, &roachpb.EndTxnRequest{}, ba.Requests[0].GetInner())
require.False(t, ba.Requests[0].GetEndTxn().CanCommitAtHigherTimestamp)
br = ba.CreateReply()
br.Txn = ba.Txn
return br, nil
})
br, pErr = tsr.SendLocked(ctx, ba)
require.Nil(t, pErr)
require.NotNil(t, br)
// Send another batch to push the spans above the limit.
ba.Requests = nil
scanArgs2 := roachpb.ScanRequest{RequestHeader: roachpb.RequestHeader{Key: keyC, EndKey: keyD}}
ba.Add(&scanArgs2)
mockSender.Reset()
br, pErr = tsr.SendLocked(ctx, ba)
require.Nil(t, pErr)
require.NotNil(t, br)
require.Equal(t, []roachpb.Span(nil), tsr.refreshSpans)
require.True(t, tsr.refreshInvalid)
// Send another EndTxn request. Still should NOT set CanCommitAtHigherTimestamp flag.
ba.Requests = nil
ba.Add(&roachpb.EndTxnRequest{})
mockSender.MockSend(func(ba roachpb.BatchRequest) (*roachpb.BatchResponse, *roachpb.Error) {
require.Len(t, ba.Requests, 1)
require.IsType(t, &roachpb.EndTxnRequest{}, ba.Requests[0].GetInner())
require.False(t, ba.Requests[0].GetEndTxn().CanCommitAtHigherTimestamp)
br = ba.CreateReply()
br.Txn = ba.Txn
return br, nil
})
br, pErr = tsr.SendLocked(ctx, ba)
require.Nil(t, pErr)
require.NotNil(t, br)
}
// TestTxnSpanRefresherEpochIncrement tests that a txnSpanRefresher's refresh
// spans and span validity status are reset on an epoch increment.
func TestTxnSpanRefresherEpochIncrement(t *testing.T) {
defer leaktest.AfterTest(t)()
ctx := context.Background()
tsr, _ := makeMockTxnSpanRefresher()
txn := makeTxnProto()
keyA, keyB := roachpb.Key("a"), roachpb.Key("b")
keyC, keyD := roachpb.Key("c"), roachpb.Key("d")
// Set MaxTxnRefreshSpansBytes limit to 3 bytes.
MaxTxnRefreshSpansBytes.Override(&tsr.st.SV, 3)
// Send a batch below the limit.
var ba roachpb.BatchRequest
ba.Header = roachpb.Header{Txn: &txn}
scanArgs := roachpb.ScanRequest{RequestHeader: roachpb.RequestHeader{Key: keyA, EndKey: keyB}}
ba.Add(&scanArgs)
br, pErr := tsr.SendLocked(ctx, ba)
require.Nil(t, pErr)
require.NotNil(t, br)
require.Equal(t, []roachpb.Span{scanArgs.Span()}, tsr.refreshSpans)
require.False(t, tsr.refreshInvalid)
require.Equal(t, int64(2), tsr.refreshSpansBytes)
require.Equal(t, txn.ReadTimestamp, tsr.refreshedTimestamp)
// Incrementing the transaction epoch clears the spans.
tsr.epochBumpedLocked()
require.Equal(t, []roachpb.Span(nil), tsr.refreshSpans)
require.False(t, tsr.refreshInvalid)
require.Equal(t, int64(0), tsr.refreshSpansBytes)
require.Equal(t, hlc.Timestamp{}, tsr.refreshedTimestamp)
// Send a batch above the limit.
ba.Requests = nil
scanArgs2 := roachpb.ScanRequest{RequestHeader: roachpb.RequestHeader{Key: keyC, EndKey: keyD}}
ba.Add(&scanArgs, &scanArgs2)
br, pErr = tsr.SendLocked(ctx, ba)
require.Nil(t, pErr)
require.NotNil(t, br)
require.Equal(t, []roachpb.Span(nil), tsr.refreshSpans)
require.True(t, tsr.refreshInvalid)
require.Equal(t, int64(0), tsr.refreshSpansBytes)
require.Equal(t, txn.ReadTimestamp, tsr.refreshedTimestamp)
// Incrementing the transaction epoch clears the invalid status.
tsr.epochBumpedLocked()
require.Equal(t, []roachpb.Span(nil), tsr.refreshSpans)
require.False(t, tsr.refreshInvalid)
require.Equal(t, int64(0), tsr.refreshSpansBytes)
require.Equal(t, hlc.Timestamp{}, tsr.refreshedTimestamp)
}
func TestTxnSpanRefresherSavepoint(t *testing.T) {
defer leaktest.AfterTest(t)()
ctx := context.Background()
tsr, mockSender := makeMockTxnSpanRefresher()
keyA, keyB := roachpb.Key("a"), roachpb.Key("b")
txn := makeTxnProto()
read := func(key roachpb.Key) {
var ba roachpb.BatchRequest
ba.Header = roachpb.Header{Txn: &txn}
getArgs := roachpb.GetRequest{RequestHeader: roachpb.RequestHeader{Key: key}}
ba.Add(&getArgs)
mockSender.MockSend(func(ba roachpb.BatchRequest) (*roachpb.BatchResponse, *roachpb.Error) {
require.Len(t, ba.Requests, 1)
require.IsType(t, &roachpb.GetRequest{}, ba.Requests[0].GetInner())
br := ba.CreateReply()
br.Txn = ba.Txn
return br, nil
})
br, pErr := tsr.SendLocked(ctx, ba)
require.Nil(t, pErr)
require.NotNil(t, br)
}
read(keyA)
require.Equal(t, []roachpb.Span{{Key: keyA}}, tsr.refreshSpans)
s := &savepoint{}
tsr.createSavepoint(ctx, s)
// Another read after the savepoint was created.
read(keyB)
require.Equal(t, []roachpb.Span{{Key: keyA}, {Key: keyB}}, tsr.refreshSpans)
require.Equal(t, []roachpb.Span{{Key: keyA}}, s.refreshSpans)
require.Less(t, s.refreshSpanBytes, tsr.refreshSpansBytes)
require.False(t, s.refreshInvalid)
// Rollback the savepoint and check that refresh spans were overwritten.
tsr.rollbackToSavepoint(ctx, s)
require.Equal(t, []roachpb.Span{{Key: keyA}}, tsr.refreshSpans)
// Set MaxTxnRefreshSpansBytes limit low and then exceed it.
MaxTxnRefreshSpansBytes.Override(&tsr.st.SV, 1)
read(keyB)
require.True(t, tsr.refreshInvalid)
// Check that rolling back to the savepoint resets refreshInvalid.
tsr.rollbackToSavepoint(ctx, s)
require.Equal(t, tsr.refreshSpansBytes, s.refreshSpanBytes)
require.False(t, tsr.refreshInvalid)
// Exceed the limit again and then create a savepoint.
read(keyB)
require.True(t, tsr.refreshInvalid)
tsr.createSavepoint(ctx, s)
require.True(t, s.refreshInvalid)
require.Empty(t, s.refreshSpans)
// Rollback to the savepoint check that refreshes are still invalid.
tsr.rollbackToSavepoint(ctx, s)
require.Empty(t, tsr.refreshSpans)
require.True(t, tsr.refreshInvalid)
}