forked from pingcap/tidb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtxn.go
executable file
·542 lines (478 loc) · 14.5 KB
/
txn.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
// Copyright 2018 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,
// See the License for the specific language governing permissions and
// limitations under the License.
package session
import (
"bytes"
"context"
"fmt"
"strings"
"sync/atomic"
"github.com/opentracing/opentracing-go"
"github.com/pingcap/errors"
"github.com/pingcap/failpoint"
"github.com/pingcap/tidb/executor"
"github.com/pingcap/tidb/kv"
"github.com/pingcap/tidb/sessionctx"
"github.com/pingcap/tidb/sessionctx/binloginfo"
"github.com/pingcap/tidb/store/tikv/oracle"
"github.com/pingcap/tidb/table"
"github.com/pingcap/tidb/tablecodec"
"github.com/pingcap/tidb/util/logutil"
"github.com/pingcap/tidb/util/memory"
"github.com/pingcap/tipb/go-binlog"
"go.uber.org/zap"
)
// TxnState wraps kv.Transaction to provide a new kv.Transaction.
// 1. It holds all statement related modification in the buffer before flush to the txn,
// so if execute statement meets error, the txn won't be made dirty.
// 2. It's a lazy transaction, that means it's a txnFuture before StartTS() is really need.
type TxnState struct {
// States of a TxnState should be one of the followings:
// Invalid: kv.Transaction == nil && txnFuture == nil
// Pending: kv.Transaction == nil && txnFuture != nil
// Valid: kv.Transaction != nil && txnFuture == nil
kv.Transaction
txnFuture *txnFuture
buf kv.MemBuffer
mutations map[int64]*binlog.TableMutation
dirtyTableOP []dirtyTableOperation
// If doNotCommit is not nil, Commit() will not commit the transaction.
// doNotCommit flag may be set when StmtCommit fail.
doNotCommit error
}
func (st *TxnState) init() {
st.buf = kv.NewMemDbBuffer(kv.DefaultTxnMembufCap)
st.mutations = make(map[int64]*binlog.TableMutation)
}
// Size implements the MemBuffer interface.
func (st *TxnState) Size() int {
return st.buf.Size()
}
// Valid implements the kv.Transaction interface.
func (st *TxnState) Valid() bool {
return st.Transaction != nil && st.Transaction.Valid()
}
func (st *TxnState) pending() bool {
return st.Transaction == nil && st.txnFuture != nil
}
func (st *TxnState) validOrPending() bool {
return st.txnFuture != nil || st.Valid()
}
func (st *TxnState) String() string {
if st.Transaction != nil {
return st.Transaction.String()
}
if st.txnFuture != nil {
return "txnFuture"
}
return "invalid transaction"
}
// GoString implements the "%#v" format for fmt.Printf.
func (st *TxnState) GoString() string {
var s strings.Builder
s.WriteString("Txn{")
if st.pending() {
s.WriteString("state=pending")
} else if st.Valid() {
s.WriteString("state=valid")
fmt.Fprintf(&s, ", txnStartTS=%d", st.Transaction.StartTS())
if len(st.dirtyTableOP) > 0 {
fmt.Fprintf(&s, ", len(dirtyTable)=%d, %#v", len(st.dirtyTableOP), st.dirtyTableOP)
}
if len(st.mutations) > 0 {
fmt.Fprintf(&s, ", len(mutations)=%d, %#v", len(st.mutations), st.mutations)
}
if st.buf != nil && st.buf.Len() != 0 {
fmt.Fprintf(&s, ", buf.length: %d, buf.size: %d", st.buf.Len(), st.buf.Size())
}
} else {
s.WriteString("state=invalid")
}
s.WriteString("}")
return s.String()
}
func (st *TxnState) changeInvalidToValid(txn kv.Transaction) {
st.Transaction = txn
st.txnFuture = nil
}
func (st *TxnState) changeInvalidToPending(future *txnFuture) {
st.Transaction = nil
st.txnFuture = future
}
func (st *TxnState) changePendingToValid(txnCap int) error {
if st.txnFuture == nil {
return errors.New("transaction future is not set")
}
future := st.txnFuture
st.txnFuture = nil
txn, err := future.wait()
if err != nil {
st.Transaction = nil
return err
}
txn.SetCap(txnCap)
st.Transaction = txn
return nil
}
func (st *TxnState) changeToInvalid() {
st.Transaction = nil
st.txnFuture = nil
}
// dirtyTableOperation represents an operation to dirtyTable, we log the operation
// first and apply the operation log when statement commit.
type dirtyTableOperation struct {
kind int
tid int64
handle int64
}
var hasMockAutoIncIDRetry = int64(0)
func enableMockAutoIncIDRetry() {
atomic.StoreInt64(&hasMockAutoIncIDRetry, 1)
}
func mockAutoIncIDRetry() bool {
return atomic.LoadInt64(&hasMockAutoIncIDRetry) == 1
}
var mockAutoRandIDRetryCount = int64(0)
func needMockAutoRandIDRetry() bool {
return atomic.LoadInt64(&mockAutoRandIDRetryCount) > 0
}
func decreaseMockAutoRandIDRetryCount() {
atomic.AddInt64(&mockAutoRandIDRetryCount, -1)
}
// ResetMockAutoRandIDRetryCount set the number of occurrences of
// `kv.ErrTxnRetryable` when calling TxnState.Commit().
func ResetMockAutoRandIDRetryCount(failTimes int64) {
atomic.StoreInt64(&mockAutoRandIDRetryCount, failTimes)
}
// Commit overrides the Transaction interface.
func (st *TxnState) Commit(ctx context.Context) error {
defer st.reset()
if len(st.mutations) != 0 || len(st.dirtyTableOP) != 0 || st.buf.Len() != 0 {
logutil.BgLogger().Error("the code should never run here",
zap.String("TxnState", st.GoString()),
zap.Stack("something must be wrong"))
return errors.New("invalid transaction")
}
if st.doNotCommit != nil {
if err1 := st.Transaction.Rollback(); err1 != nil {
logutil.BgLogger().Error("rollback error", zap.Error(err1))
}
return errors.Trace(st.doNotCommit)
}
// mockCommitError8942 is used for PR #8942.
failpoint.Inject("mockCommitError8942", func(val failpoint.Value) {
if val.(bool) {
failpoint.Return(kv.ErrTxnRetryable)
}
})
// mockCommitRetryForAutoIncID is used to mock an commit retry for adjustAutoIncrementDatum.
failpoint.Inject("mockCommitRetryForAutoIncID", func(val failpoint.Value) {
if val.(bool) && !mockAutoIncIDRetry() {
enableMockAutoIncIDRetry()
failpoint.Return(kv.ErrTxnRetryable)
}
})
failpoint.Inject("mockCommitRetryForAutoRandID", func(val failpoint.Value) {
if val.(bool) && needMockAutoRandIDRetry() {
decreaseMockAutoRandIDRetryCount()
failpoint.Return(kv.ErrTxnRetryable)
}
})
return st.Transaction.Commit(ctx)
}
// Rollback overrides the Transaction interface.
func (st *TxnState) Rollback() error {
defer st.reset()
return st.Transaction.Rollback()
}
func (st *TxnState) reset() {
st.doNotCommit = nil
st.cleanup()
st.changeToInvalid()
}
// Get overrides the Transaction interface.
func (st *TxnState) Get(ctx context.Context, k kv.Key) ([]byte, error) {
val, err := st.buf.Get(ctx, k)
if kv.IsErrNotFound(err) {
val, err = st.Transaction.Get(ctx, k)
if kv.IsErrNotFound(err) {
return nil, err
}
}
if err != nil {
return nil, err
}
if len(val) == 0 {
return nil, kv.ErrNotExist
}
return val, nil
}
// BatchGet overrides the Transaction interface.
func (st *TxnState) BatchGet(ctx context.Context, keys []kv.Key) (map[string][]byte, error) {
bufferValues := make([][]byte, len(keys))
shrinkKeys := make([]kv.Key, 0, len(keys))
for i, key := range keys {
val, err := st.buf.Get(ctx, key)
if kv.IsErrNotFound(err) {
shrinkKeys = append(shrinkKeys, key)
continue
}
if err != nil {
return nil, err
}
if len(val) != 0 {
bufferValues[i] = val
}
}
storageValues, err := st.Transaction.BatchGet(ctx, shrinkKeys)
if err != nil {
return nil, err
}
for i, key := range keys {
if bufferValues[i] == nil {
continue
}
storageValues[string(key)] = bufferValues[i]
}
return storageValues, nil
}
// Set overrides the Transaction interface.
func (st *TxnState) Set(k kv.Key, v []byte) error {
return st.buf.Set(k, v)
}
// Delete overrides the Transaction interface.
func (st *TxnState) Delete(k kv.Key) error {
return st.buf.Delete(k)
}
// Iter overrides the Transaction interface.
func (st *TxnState) Iter(k kv.Key, upperBound kv.Key) (kv.Iterator, error) {
bufferIt, err := st.buf.Iter(k, upperBound)
if err != nil {
return nil, err
}
retrieverIt, err := st.Transaction.Iter(k, upperBound)
if err != nil {
return nil, err
}
return kv.NewUnionIter(bufferIt, retrieverIt, false)
}
// IterReverse overrides the Transaction interface.
func (st *TxnState) IterReverse(k kv.Key) (kv.Iterator, error) {
bufferIt, err := st.buf.IterReverse(k)
if err != nil {
return nil, err
}
retrieverIt, err := st.Transaction.IterReverse(k)
if err != nil {
return nil, err
}
return kv.NewUnionIter(bufferIt, retrieverIt, true)
}
func (st *TxnState) cleanup() {
const sz4M = 4 << 20
if st.buf.Size() > sz4M {
// The memory footprint for the large transaction could be huge here.
// Each active session has its own buffer, we should free the buffer to
// avoid memory leak.
st.buf = kv.NewMemDbBuffer(kv.DefaultTxnMembufCap)
} else {
st.buf.Reset()
}
for key := range st.mutations {
delete(st.mutations, key)
}
if st.dirtyTableOP != nil {
empty := dirtyTableOperation{}
for i := 0; i < len(st.dirtyTableOP); i++ {
st.dirtyTableOP[i] = empty
}
if len(st.dirtyTableOP) > 256 {
// Reduce memory footprint for the large transaction.
st.dirtyTableOP = nil
} else {
st.dirtyTableOP = st.dirtyTableOP[:0]
}
}
}
// KeysNeedToLock returns the keys need to be locked.
func (st *TxnState) KeysNeedToLock() ([]kv.Key, error) {
keys := make([]kv.Key, 0, st.buf.Len())
if err := kv.WalkMemBuffer(st.buf, func(k kv.Key, v []byte) error {
if !keyNeedToLock(k, v) {
return nil
}
// If the key is already locked, it will be deduplicated in LockKeys method later.
// The statement MemBuffer will be reused, so we must copy the key here.
keys = append(keys, append([]byte{}, k...))
return nil
}); err != nil {
return nil, err
}
return keys, nil
}
func keyNeedToLock(k, v []byte) bool {
isTableKey := bytes.HasPrefix(k, tablecodec.TablePrefix())
if !isTableKey {
// meta key always need to lock.
return true
}
isDelete := len(v) == 0
if isDelete {
// only need to delete row key.
return k[10] == 'r'
}
if tablecodec.IsUntouchedIndexKValue(k, v) {
return false
}
isNonUniqueIndex := tablecodec.IsIndexKey(k) && len(v) == 1
// Put row key and unique index need to lock.
return !isNonUniqueIndex
}
func getBinlogMutation(ctx sessionctx.Context, tableID int64) *binlog.TableMutation {
bin := binloginfo.GetPrewriteValue(ctx, true)
for i := range bin.Mutations {
if bin.Mutations[i].TableId == tableID {
return &bin.Mutations[i]
}
}
idx := len(bin.Mutations)
bin.Mutations = append(bin.Mutations, binlog.TableMutation{TableId: tableID})
return &bin.Mutations[idx]
}
func mergeToMutation(m1, m2 *binlog.TableMutation) {
m1.InsertedRows = append(m1.InsertedRows, m2.InsertedRows...)
m1.UpdatedRows = append(m1.UpdatedRows, m2.UpdatedRows...)
m1.DeletedIds = append(m1.DeletedIds, m2.DeletedIds...)
m1.DeletedPks = append(m1.DeletedPks, m2.DeletedPks...)
m1.DeletedRows = append(m1.DeletedRows, m2.DeletedRows...)
m1.Sequence = append(m1.Sequence, m2.Sequence...)
}
func mergeToDirtyDB(dirtyDB *executor.DirtyDB, op dirtyTableOperation) {
dt := dirtyDB.GetDirtyTable(op.tid)
switch op.kind {
case table.DirtyTableAddRow:
dt.AddRow(op.handle)
case table.DirtyTableDeleteRow:
dt.DeleteRow(op.handle)
}
}
type txnFailFuture struct{}
func (txnFailFuture) Wait() (uint64, error) {
return 0, errors.New("mock get timestamp fail")
}
// txnFuture is a promise, which promises to return a txn in future.
type txnFuture struct {
future oracle.Future
store kv.Storage
}
func (tf *txnFuture) wait() (kv.Transaction, error) {
startTS, err := tf.future.Wait()
if err == nil {
return tf.store.BeginWithStartTS(startTS)
} else if _, ok := tf.future.(txnFailFuture); ok {
return nil, err
}
// It would retry get timestamp.
return tf.store.Begin()
}
func (s *session) getTxnFuture(ctx context.Context) *txnFuture {
if span := opentracing.SpanFromContext(ctx); span != nil && span.Tracer() != nil {
span1 := span.Tracer().StartSpan("session.getTxnFuture", opentracing.ChildOf(span.Context()))
defer span1.Finish()
ctx = opentracing.ContextWithSpan(ctx, span1)
}
oracleStore := s.store.GetOracle()
var tsFuture oracle.Future
if s.sessionVars.LowResolutionTSO {
tsFuture = oracleStore.GetLowResolutionTimestampAsync(ctx)
} else {
tsFuture = oracleStore.GetTimestampAsync(ctx)
}
ret := &txnFuture{future: tsFuture, store: s.store}
failpoint.InjectContext(ctx, "mockGetTSFail", func() {
ret.future = txnFailFuture{}
})
return ret
}
// HasDirtyContent checks whether there's dirty update on the given table.
// Put this function here is to avoid cycle import.
func (s *session) HasDirtyContent(tid int64) bool {
x := s.GetSessionVars().TxnCtx.DirtyDB
if x == nil {
return false
}
return !x.(*executor.DirtyDB).GetDirtyTable(tid).IsEmpty()
}
// StmtCommit implements the sessionctx.Context interface.
func (s *session) StmtCommit(memTracker *memory.Tracker) error {
defer func() {
// If StmtCommit is called in batch mode, we need to clear the txn size
// in memTracker to avoid double-counting. If it's not batch mode, this
// work has no effect because that no more data will be appended into
// s.txn.
if memTracker != nil {
memTracker.Consume(int64(-s.txn.Size()))
}
s.txn.cleanup()
}()
st := &s.txn
txnSize := st.Transaction.Size()
var count int
err := kv.WalkMemBuffer(st.buf, func(k kv.Key, v []byte) error {
failpoint.Inject("mockStmtCommitError", func(val failpoint.Value) {
if val.(bool) {
count++
}
})
if count > 3 {
return errors.New("mock stmt commit error")
}
if len(v) == 0 {
return st.Transaction.Delete(k)
}
return st.Transaction.Set(k, v)
})
if err != nil {
st.doNotCommit = err
return err
}
if memTracker != nil {
memTracker.Consume(int64(st.Transaction.Size() - txnSize))
}
// Need to flush binlog.
for tableID, delta := range st.mutations {
mutation := getBinlogMutation(s, tableID)
mergeToMutation(mutation, delta)
}
if len(st.dirtyTableOP) > 0 {
dirtyDB := executor.GetDirtyDB(s)
for _, op := range st.dirtyTableOP {
mergeToDirtyDB(dirtyDB, op)
}
}
return nil
}
// StmtRollback implements the sessionctx.Context interface.
func (s *session) StmtRollback() {
s.txn.cleanup()
}
// StmtGetMutation implements the sessionctx.Context interface.
func (s *session) StmtGetMutation(tableID int64) *binlog.TableMutation {
st := &s.txn
if _, ok := st.mutations[tableID]; !ok {
st.mutations[tableID] = &binlog.TableMutation{TableId: tableID}
}
return st.mutations[tableID]
}
func (s *session) StmtAddDirtyTableOP(op int, tid int64, handle int64) {
s.txn.dirtyTableOP = append(s.txn.dirtyTableOP, dirtyTableOperation{op, tid, handle})
}