forked from Restream/reindexer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tx.go
632 lines (519 loc) · 16.4 KB
/
tx.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
package reindexer
import (
"context"
"sync"
"sync/atomic"
"github.com/prometheus/client_golang/prometheus"
otelattr "go.opentelemetry.io/otel/attribute"
"github.com/restream/reindexer/v3/bindings"
"github.com/restream/reindexer/v3/cjson"
)
const maxAsyncRequests = 500
const asyncResponseQueueSize = 2 * maxAsyncRequests
const retriesOnInvalidStateCnt = 1
// Tx is transaction object. Transaction are performs atomic namespace update.
// There are synchronous and async transaction available. To start transaction method `db.BeginTx()` is used.
// This method creates transaction object
type Tx struct {
namespace string
started bool
finalized bool
db *reindexerImpl
ns *reindexerNamespace
asyncRspCnt uint32
ctx bindings.TxCtx
cmplCh chan modifyInfo
cmplCond *sync.Cond
lock sync.Mutex
asyncErr error
asyncErrLock sync.RWMutex
}
func newTx(db *reindexerImpl, namespace string, ctx context.Context) (tx *Tx, err error) {
tx = &Tx{db: db, namespace: namespace}
if tx.ns, err = tx.db.getNS(tx.namespace); err != nil {
return nil, err
}
if err = tx.startTxCtx(ctx); err != nil {
return nil, err
}
return tx, nil
}
func (tx *Tx) startTx() (err error) {
return tx.startTxCtx(context.Background())
}
func (tx *Tx) startTxCtx(ctx context.Context) (err error) {
err = tx.checkFinalization()
if err != nil {
return
}
if tx.started {
return nil
}
tx.asyncRspCnt = 0
tx.started = true
tx.ctx, err = tx.db.binding.BeginTx(ctx, tx.namespace)
if err != nil {
return err
}
tx.ctx.UserCtx = ctx
tx.cmplCh = nil
tx.cmplCond = nil
return nil
}
func (tx *Tx) startAsyncRoutines() error {
if tx.cmplCh == nil {
tx.cmplCh = make(chan modifyInfo, asyncResponseQueueSize)
tx.cmplCond = sync.NewCond(&tx.lock)
go tx.cmplHandlingRoutine(tx.cmplCh)
}
return tx.checkReqCount()
}
func (tx *Tx) Insert(item interface{}, precepts ...string) error {
if tx.db.otelTracer != nil {
defer tx.db.startTracingSpan(tx.ctx.UserCtx, "Reindexer.Tx.Insert", otelattr.String("rx.ns", tx.namespace)).End()
}
if tx.db.promMetrics != nil {
defer prometheus.NewTimer(tx.db.promMetrics.clientCallsLatency.WithLabelValues("Tx.Insert", tx.namespace)).ObserveDuration()
}
err := tx.startTx()
if err != nil {
return err
}
return tx.modifyInternal(item, nil, modeInsert, precepts...)
}
func (tx *Tx) Update(item interface{}, precepts ...string) error {
if tx.db.otelTracer != nil {
defer tx.db.startTracingSpan(tx.ctx.UserCtx, "Reindexer.Tx.Update", otelattr.String("rx.ns", tx.namespace)).End()
}
if tx.db.promMetrics != nil {
defer prometheus.NewTimer(tx.db.promMetrics.clientCallsLatency.WithLabelValues("Tx.Update", tx.namespace)).ObserveDuration()
}
err := tx.startTx()
if err != nil {
return err
}
return tx.modifyInternal(item, nil, modeUpdate, precepts...)
}
// Upsert (Insert or Update) item to namespace
func (tx *Tx) Upsert(item interface{}, precepts ...string) error {
if tx.db.otelTracer != nil {
defer tx.db.startTracingSpan(tx.ctx.UserCtx, "Reindexer.Tx.Upsert", otelattr.String("rx.ns", tx.namespace)).End()
}
if tx.db.promMetrics != nil {
defer prometheus.NewTimer(tx.db.promMetrics.clientCallsLatency.WithLabelValues("Tx.Upsert", tx.namespace)).ObserveDuration()
}
err := tx.startTx()
if err != nil {
return err
}
return tx.modifyInternal(item, nil, modeUpsert, precepts...)
}
// UpsertJSON (Insert or Update) item to namespace
func (tx *Tx) UpsertJSON(json []byte, precepts ...string) error {
if tx.db.otelTracer != nil {
defer tx.db.startTracingSpan(tx.ctx.UserCtx, "Reindexer.Tx.UpsertJSON", otelattr.String("rx.ns", tx.namespace)).End()
}
if tx.db.promMetrics != nil {
defer prometheus.NewTimer(tx.db.promMetrics.clientCallsLatency.WithLabelValues("Tx.UpsertJSON", tx.namespace)).ObserveDuration()
}
err := tx.startTx()
if err != nil {
return err
}
return tx.modifyInternal(nil, json, modeUpsert, precepts...)
}
// Delete - remove item by id from namespace
func (tx *Tx) Delete(item interface{}, precepts ...string) error {
if tx.db.otelTracer != nil {
defer tx.db.startTracingSpan(tx.ctx.UserCtx, "Reindexer.Tx.Delete", otelattr.String("rx.ns", tx.namespace)).End()
}
if tx.db.promMetrics != nil {
defer prometheus.NewTimer(tx.db.promMetrics.clientCallsLatency.WithLabelValues("Tx.Delete", tx.namespace)).ObserveDuration()
}
err := tx.startTx()
if err != nil {
return err
}
return tx.modifyInternal(item, nil, modeDelete, precepts...)
}
// DeleteJSON - remove item by id from namespace
func (tx *Tx) DeleteJSON(json []byte, precepts ...string) error {
if tx.db.otelTracer != nil {
defer tx.db.startTracingSpan(tx.ctx.UserCtx, "Reindexer.Tx.DeleteJSON", otelattr.String("rx.ns", tx.namespace)).End()
}
if tx.db.promMetrics != nil {
defer prometheus.NewTimer(tx.db.promMetrics.clientCallsLatency.WithLabelValues("Tx.DeleteJSON", tx.namespace)).ObserveDuration()
}
err := tx.startTx()
if err != nil {
return err
}
return tx.modifyInternal(nil, json, modeDelete, precepts...)
}
func (tx *Tx) handleRecoverFromAsyncOp(rec interface{}) error {
tx.cmplCond.L.Lock()
atomic.AddUint32(&tx.asyncRspCnt, ^uint32(0))
tx.cmplCond.Broadcast()
tx.cmplCond.L.Unlock()
switch x := rec.(type) {
case error:
return x
default:
return bindings.NewError("Unknown panic type", ErrCodeLogic)
}
}
// InsertAsync Insert item to namespace. Calls completion on result
func (tx *Tx) InsertAsync(item interface{}, cmpl bindings.Completion, precepts ...string) (err error) {
if tx.db.otelTracer != nil {
defer tx.db.startTracingSpan(tx.ctx.UserCtx, "Reindexer.Tx.InsertAsync", otelattr.String("rx.ns", tx.namespace)).End()
}
if tx.db.promMetrics != nil {
defer prometheus.NewTimer(tx.db.promMetrics.clientCallsLatency.WithLabelValues("Tx.InsertAsync", tx.namespace)).ObserveDuration()
}
err = tx.startTx()
if err != nil {
return err
}
if err = tx.startAsyncRoutines(); err != nil {
return err
}
defer func() {
if rec := recover(); rec != nil {
err = tx.handleRecoverFromAsyncOp(rec)
}
}()
return tx.modifyInternalAsync(item, nil, modeInsert, cmpl, retriesOnInvalidStateCnt, precepts...)
}
// UpdateAsync Update item to namespace. Calls completion on result
func (tx *Tx) UpdateAsync(item interface{}, cmpl bindings.Completion, precepts ...string) (err error) {
if tx.db.otelTracer != nil {
defer tx.db.startTracingSpan(tx.ctx.UserCtx, "Reindexer.Tx.UpdateAsync", otelattr.String("rx.ns", tx.namespace)).End()
}
if tx.db.promMetrics != nil {
defer prometheus.NewTimer(tx.db.promMetrics.clientCallsLatency.WithLabelValues("Tx.UpdateAsync", tx.namespace)).ObserveDuration()
}
err = tx.startTx()
if err != nil {
return err
}
if err = tx.startAsyncRoutines(); err != nil {
return err
}
defer func() {
if rec := recover(); rec != nil {
err = tx.handleRecoverFromAsyncOp(rec)
}
}()
return tx.modifyInternalAsync(item, nil, modeUpdate, cmpl, retriesOnInvalidStateCnt, precepts...)
}
// UpsertAsync (Insert or Update) item to namespace. Calls completion on result
func (tx *Tx) UpsertAsync(item interface{}, cmpl bindings.Completion, precepts ...string) (err error) {
if tx.db.otelTracer != nil {
defer tx.db.startTracingSpan(tx.ctx.UserCtx, "Reindexer.Tx.UpsertAsync", otelattr.String("rx.ns", tx.namespace)).End()
}
if tx.db.promMetrics != nil {
defer prometheus.NewTimer(tx.db.promMetrics.clientCallsLatency.WithLabelValues("Tx.UpsertAsync", tx.namespace)).ObserveDuration()
}
err = tx.startTx()
if err != nil {
return err
}
if err = tx.startAsyncRoutines(); err != nil {
return err
}
defer func() {
if rec := recover(); rec != nil {
err = tx.handleRecoverFromAsyncOp(rec)
}
}()
return tx.modifyInternalAsync(item, nil, modeUpsert, cmpl, retriesOnInvalidStateCnt, precepts...)
}
// UpsertJSONAsync (Insert or Update) item to index. Calls completion on result
func (tx *Tx) UpsertJSONAsync(json []byte, cmpl bindings.Completion, precepts ...string) error {
if tx.db.otelTracer != nil {
defer tx.db.startTracingSpan(tx.ctx.UserCtx, "Reindexer.Tx.UpsertJSONAsync", otelattr.String("rx.ns", tx.namespace)).End()
}
if tx.db.promMetrics != nil {
defer prometheus.NewTimer(tx.db.promMetrics.clientCallsLatency.WithLabelValues("Tx.UpsertJSONAsync", tx.namespace)).ObserveDuration()
}
err := tx.startTx()
if err != nil {
return err
}
if err = tx.startAsyncRoutines(); err != nil {
return err
}
return tx.modifyInternalAsync(nil, json, modeUpsert, cmpl, retriesOnInvalidStateCnt, precepts...)
}
// DeleteAsync - remove item by id from namespace. Calls completion on result
func (tx *Tx) DeleteAsync(item interface{}, cmpl bindings.Completion, precepts ...string) (err error) {
if tx.db.otelTracer != nil {
defer tx.db.startTracingSpan(tx.ctx.UserCtx, "Reindexer.Tx.DeleteAsync", otelattr.String("rx.ns", tx.namespace)).End()
}
if tx.db.promMetrics != nil {
defer prometheus.NewTimer(tx.db.promMetrics.clientCallsLatency.WithLabelValues("Tx.DeleteAsync", tx.namespace)).ObserveDuration()
}
err = tx.startTx()
if err != nil {
return err
}
if err = tx.startAsyncRoutines(); err != nil {
return err
}
defer func() {
if rec := recover(); rec != nil {
err = tx.handleRecoverFromAsyncOp(rec)
}
}()
return tx.modifyInternalAsync(item, nil, modeDelete, cmpl, retriesOnInvalidStateCnt, precepts...)
}
// DeleteJSONAsync - remove item by id from namespace. Calls completion on result
func (tx *Tx) DeleteJSONAsync(json []byte, cmpl bindings.Completion, precepts ...string) error {
if tx.db.otelTracer != nil {
defer tx.db.startTracingSpan(tx.ctx.UserCtx, "Reindexer.Tx.DeleteJSONAsync", otelattr.String("rx.ns", tx.namespace)).End()
}
if tx.db.promMetrics != nil {
defer prometheus.NewTimer(tx.db.promMetrics.clientCallsLatency.WithLabelValues("Tx.DeleteJSONAsync", tx.namespace)).ObserveDuration()
}
err := tx.startTx()
if err != nil {
return err
}
if err = tx.startAsyncRoutines(); err != nil {
return err
}
return tx.modifyInternalAsync(nil, json, modeDelete, cmpl, retriesOnInvalidStateCnt, precepts...)
}
func (tx *Tx) checkFinalization() error {
if tx.finalized {
return bindings.NewError("Tx is already finalized", bindings.ErrLogic)
}
return nil
}
// CommitWithCount apply changes, and return count of changed items
func (tx *Tx) CommitWithCount() (count int, err error) {
if tx.db.otelTracer != nil {
defer tx.db.startTracingSpan(tx.ctx.UserCtx, "Reindexer.Tx.CommitWithCount", otelattr.String("rx.ns", tx.namespace)).End()
}
if tx.db.promMetrics != nil {
defer prometheus.NewTimer(tx.db.promMetrics.clientCallsLatency.WithLabelValues("Tx.CommitWithCount", tx.namespace)).ObserveDuration()
}
if !tx.started {
return 0, nil
}
if count, err = tx.commitInternal(); err != nil {
return
}
return
}
// Commit - apply changes. Commit also waits for all async operations done, and then apply changes.
// if any error occurred during prepare process, then tx.Commit should
// return an error. So it is enough, to check error returned by Commit - to be sure
// that all data has been successfully committed or not.
func (tx *Tx) Commit() error {
_, err := tx.CommitWithCount()
return err
}
// MustCommit apply changes and starts panic on errors
func (tx *Tx) MustCommit() int {
count, err := tx.CommitWithCount()
if err != nil {
panic(err)
}
return count
}
// AwaitResults awaits async requests completion
func (tx *Tx) AwaitResults() *Tx {
if tx.cmplCh != nil && atomic.LoadUint32(&tx.asyncRspCnt) > 0 {
tx.cmplCond.L.Lock()
for atomic.LoadUint32(&tx.asyncRspCnt) > 0 {
tx.cmplCond.Wait()
}
tx.cmplCond.L.Unlock()
}
return tx
}
// Query creates Query in transaction for Update or Delete or Read
// Read-committed isolation is available for read operations.
// Changes made in active transaction is invisible to current and another transactions.
func (tx *Tx) Query() *Query {
return tx.db.queryTx(tx.namespace, tx)
}
// finalize transaction
func (tx *Tx) finalize() {
if tx.cmplCh != nil {
close(tx.cmplCh)
tx.cmplCh = nil
}
if tx.ctx.Result != nil {
tx.ctx.Result.Free()
tx.ctx.Result = nil
}
tx.finalized = true
}
func (tx *Tx) modifyInternal(item interface{}, json []byte, mode int, precepts ...string) (err error) {
for tryCount := 0; tryCount < 2; tryCount++ {
ser := cjson.NewPoolSerializer()
defer ser.Close()
format := 0
stateToken := 0
if format, stateToken, err = packItem(tx.ns, item, json, ser); err != nil {
return err
}
err := tx.db.binding.ModifyItemTx(&tx.ctx, format, ser.Bytes(), mode, precepts, stateToken)
if err != nil {
rerr, ok := err.(bindings.Error)
if ok && rerr.Code() == bindings.ErrStateInvalidated {
it := tx.db.query(tx.ns.name).Limit(0).ExecCtx(tx.ctx.UserCtx)
it.Close()
err = rerr
continue
}
return err
}
return nil
}
return nil
}
type modifyInfo struct {
err error
cmpl bindings.Completion
item interface{}
json []byte
mode int
precepts []string
retries uint32
}
func (tx *Tx) setAsyncError(err error) {
if err != nil {
tx.asyncErrLock.Lock()
if tx.asyncErr == nil {
tx.asyncErr = err
}
tx.asyncErrLock.Unlock()
}
}
func (tx *Tx) cmplHandlingRoutine(cmplCh chan modifyInfo) {
for {
if modifyRes, ok := <-cmplCh; ok {
err := modifyRes.err
if err != nil {
rerr, ok := err.(bindings.Error)
if ok && rerr.Code() == bindings.ErrStateInvalidated && modifyRes.retries > 0 {
it := tx.db.query(tx.ns.name).Limit(0).ExecCtx(tx.ctx.UserCtx)
err = it.Error()
it.Close()
}
}
if err == nil && modifyRes.retries > 0 {
tx.modifyInternalAsync(modifyRes.item, modifyRes.json, modifyRes.mode, modifyRes.cmpl, modifyRes.retries-1, modifyRes.precepts...)
continue
}
modifyRes.cmpl(err)
tx.setAsyncError(err)
tx.cmplCond.L.Lock()
atomic.AddUint32(&tx.asyncRspCnt, ^uint32(0))
tx.cmplCond.Broadcast()
tx.cmplCond.L.Unlock()
} else {
return
}
}
}
func (tx *Tx) modifyInternalAsync(item interface{}, json []byte, mode int, cmpl bindings.Completion, retriesRemain uint32, precepts ...string) (err error) {
internalCmpl := func(buf bindings.RawBuffer, err error) {
if buf != nil {
buf.Free()
}
if err != nil {
tx.cmplCh <- modifyInfo{err: err, cmpl: cmpl, item: item, json: json, mode: mode, precepts: precepts, retries: retriesRemain}
} else {
tx.cmplCh <- modifyInfo{err: nil, cmpl: cmpl}
}
}
ser := cjson.NewPoolSerializer()
defer ser.Close()
format := 0
stateToken := 0
if format, stateToken, err = packItem(tx.ns, item, json, ser); err != nil {
internalCmpl(nil, err)
return err
}
tx.db.binding.ModifyItemTxAsync(&tx.ctx, format, ser.Bytes(), mode, precepts, stateToken, internalCmpl)
return nil
}
func (tx *Tx) checkReqCount() error {
for {
asyncRspCnt := atomic.LoadUint32(&tx.asyncRspCnt)
if asyncRspCnt < maxAsyncRequests {
if atomic.CompareAndSwapUint32(&tx.asyncRspCnt, asyncRspCnt, asyncRspCnt+1) {
tx.asyncErrLock.RLock()
err := tx.asyncErr
tx.asyncErrLock.RUnlock()
if err != nil {
tx.cmplCond.L.Lock()
atomic.AddUint32(&tx.asyncRspCnt, ^uint32(0))
tx.cmplCond.Broadcast()
tx.cmplCond.L.Unlock()
}
return err
}
} else {
tx.cmplCond.L.Lock()
for atomic.LoadUint32(&tx.asyncRspCnt) == maxAsyncRequests {
tx.cmplCond.Wait()
}
tx.cmplCond.L.Unlock()
}
}
}
// Commit apply changes
func (tx *Tx) commitInternal() (count int, err error) {
count = 0
err = tx.checkFinalization()
if err != nil {
return
}
tx.AwaitResults()
defer tx.finalize()
if tx.asyncErr != nil {
asyncErr := tx.asyncErr
err = tx.db.binding.RollbackTx(&tx.ctx)
if err == nil {
err = asyncErr
}
return 0, err
}
out, err := tx.db.binding.CommitTx(&tx.ctx)
if err != nil {
return 0, err
}
defer out.Free()
rdSer := newSerializer(out.GetBuf())
rawQueryParams := rdSer.readRawQueryParams(func(nsid int) {
tx.ns.cjsonState.ReadPayloadType(&rdSer.Serializer, tx.db.binding, tx.ns.name)
})
if rawQueryParams.count == 0 {
return
}
for i := 0; i < rawQueryParams.count; i++ {
count++
item := rdSer.readRawtItemParams()
tx.ns.cacheItems.Remove(item.id)
}
return
}
// Rollback transaction.
// It is safe to call Rollback after Commit
func (tx *Tx) Rollback() error {
if tx.db.otelTracer != nil {
defer tx.db.startTracingSpan(tx.ctx.UserCtx, "Reindexer.Tx.Rollback", otelattr.String("rx.ns", tx.namespace)).End()
}
if tx.db.promMetrics != nil {
defer prometheus.NewTimer(tx.db.promMetrics.clientCallsLatency.WithLabelValues("Tx.Rollback", tx.namespace)).ObserveDuration()
}
tx.AwaitResults()
tx.asyncErr = nil
defer tx.finalize()
return tx.db.binding.RollbackTx(&tx.ctx)
}