-
Notifications
You must be signed in to change notification settings - Fork 71
/
batch_writer.go
138 lines (111 loc) · 3.99 KB
/
batch_writer.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
package ghostferry
import (
"fmt"
"os"
"time"
sql "github.com/Shopify/ghostferry/sqlwrapper"
"github.com/sirupsen/logrus"
)
var batchWriteRetryDelay = 5 * time.Millisecond
func init() {
if os.Getenv("CI") == "true" {
batchWriteRetryDelay = 500 * time.Millisecond
}
}
type BatchWriterVerificationFailed struct {
mismatchedPaginationKeys []InlineVerifierMismatches
table string
}
func (e BatchWriterVerificationFailed) Error() string {
return fmt.Sprintf("row fingerprints for paginationKeys %v on %v do not match", e.mismatchedPaginationKeys, e.table)
}
type BatchWriter struct {
DB *sql.DB
InlineVerifier *InlineVerifier
StateTracker *StateTracker
EnforceInlineVerification bool // Only needed when running the BatchWriter during cutover
DatabaseRewrites map[string]string
TableRewrites map[string]string
WriteRetries int
stmtCache *StmtCache
logger *logrus.Entry
enableRowBatchSize bool
}
func (w *BatchWriter) Initialize() {
w.stmtCache = NewStmtCache()
w.logger = logrus.WithField("tag", "batch_writer")
}
func (w *BatchWriter) WriteRowBatch(batch *RowBatch) error {
return WithRetries(w.WriteRetries, batchWriteRetryDelay, w.logger, "write batch to target", func() error {
values := batch.Values()
if len(values) == 0 {
return nil
}
startPaginationKeypos, err := values[0].GetUint64(batch.PaginationKeyIndex())
if err != nil {
return err
}
endPaginationKeypos, err := values[len(values)-1].GetUint64(batch.PaginationKeyIndex())
if err != nil {
return err
}
db := batch.TableSchema().Schema
if targetDbName, exists := w.DatabaseRewrites[db]; exists {
db = targetDbName
}
table := batch.TableSchema().Name
if targetTableName, exists := w.TableRewrites[table]; exists {
table = targetTableName
}
query, args, err := batch.AsSQLQuery(db, table)
if err != nil {
return fmt.Errorf("during generating sql query at paginationKey %v -> %v: %v", startPaginationKeypos, endPaginationKeypos, err)
}
stmt, err := w.stmtCache.StmtFor(w.DB, query)
if err != nil {
return fmt.Errorf("during prepare query near paginationKey %v -> %v (%s): %v", startPaginationKeypos, endPaginationKeypos, query, err)
}
tx, err := w.DB.Begin()
if err != nil {
return fmt.Errorf("unable to begin transaction in BatchWriter: %v", err)
}
_, err = tx.Stmt(stmt).Exec(args...)
if err != nil {
tx.Rollback()
return fmt.Errorf("during exec query near paginationKey %v -> %v (%s): %v", startPaginationKeypos, endPaginationKeypos, query, err)
}
if w.InlineVerifier != nil {
mismatches, err := w.InlineVerifier.CheckFingerprintInline(tx, db, table, batch, w.EnforceInlineVerification)
if err != nil {
tx.Rollback()
return fmt.Errorf("during fingerprint checking for paginationKey %v -> %v (%s): %v", startPaginationKeypos, endPaginationKeypos, query, err)
}
if w.EnforceInlineVerification {
// This code should only be active if the InlineVerifier background
// reverification is not occuring. An example of this would be when you
// run the BatchWriter as a part of copying the primary table or the delta
// copying the joined table.
if len(mismatches) > 0 {
tx.Rollback()
return BatchWriterVerificationFailed{mismatches, batch.TableSchema().String()}
}
}
}
err = tx.Commit()
if err != nil {
tx.Rollback()
return fmt.Errorf("during commit near paginationKey %v -> %v (%s): %v", startPaginationKeypos, endPaginationKeypos, query, err)
}
// Note that the state tracker expects us the track based on the original
// database and table names as opposed to the target ones.
if w.StateTracker != nil {
bytesWrittenForThisBatch := uint64(0)
if w.enableRowBatchSize {
bytesWrittenForThisBatch = batch.EstimateByteSize()
}
w.StateTracker.UpdateLastSuccessfulPaginationKey(batch.TableSchema().String(), endPaginationKeypos,
RowStats{NumBytes: bytesWrittenForThisBatch, NumRows: uint64(batch.Size())})
}
return nil
})
}