-
Notifications
You must be signed in to change notification settings - Fork 15
/
mssqlx.go
1518 lines (1285 loc) · 41.8 KB
/
mssqlx.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
package mssqlx
import (
"context"
"database/sql"
"errors"
"os"
"sync"
"time"
"github.com/hashicorp/go-multierror"
"github.com/jmoiron/sqlx"
)
var (
// ErrNoConnection there is no connection to db
ErrNoConnection = errors.New("no connection available")
// ErrNoConnectionOrWsrep there is no connection to db or Wsrep is not ready
ErrNoConnectionOrWsrep = errors.New("no connection available or Wsrep is not ready")
)
const (
// DefaultHealthCheckPeriodInMilli default period in millisecond mssqlx should do a health check of failed database
DefaultHealthCheckPeriodInMilli = 40
)
var hostName string
func init() {
hostName, _ = os.Hostname()
}
func ping(w *wrapper) (err error) {
_, err = w.db.Exec("SELECT 1")
return
}
// DBs sqlx wrapper supports querying master-slave database connections for HA and scalability, auto-balancer integrated.
type DBs struct {
masters *balancer
slaves *balancer
all *balancer
driverName string
_masters []*wrapper
_slaves []*wrapper
_all []*wrapper
readQuerySource ReadQuerySource
}
// DriverName returns the driverName passed to the Open function for this DB.
func (dbs *DBs) DriverName() string {
return dbs.driverName
}
func (dbs *DBs) getDBs(s []*wrapper) ([]*sqlx.DB, int) {
n := len(s)
r := make([]*sqlx.DB, n)
for i, v := range s {
r[i] = v.db
}
return r, n
}
func (dbs *DBs) readBalancer() *balancer {
if dbs.readQuerySource == ReadQuerySourceAll {
return dbs.all
}
return dbs.slaves
}
// GetAllMasters get all master database connections, included failing one.
func (dbs *DBs) GetAllMasters() ([]*sqlx.DB, int) {
return dbs.getDBs(dbs._masters)
}
// GetAllSlaves get all slave database connections, included failing one.
func (dbs *DBs) GetAllSlaves() ([]*sqlx.DB, int) {
return dbs.getDBs(dbs._slaves)
}
func _ping(target []*wrapper) []error {
if target == nil {
return nil
}
nn := len(target)
if nn == 0 {
return nil
}
errResult := make([]error, nn)
var wg sync.WaitGroup
for i := range target {
if target[i] != nil && target[i].db != nil {
wg.Add(1)
go func(ind int, wg *sync.WaitGroup) {
errResult[ind] = target[ind].db.Ping()
wg.Done()
}(i, &wg)
}
}
wg.Wait()
return errResult
}
// Ping all master-slave database connections
func (dbs *DBs) Ping() []error {
return _ping(dbs._all)
}
// PingMaster all master database connections
func (dbs *DBs) PingMaster() []error {
return _ping(dbs._masters)
}
// PingSlave all slave database connections
func (dbs *DBs) PingSlave() []error {
return _ping(dbs._slaves)
}
func _close(target []*wrapper) []error {
if target == nil {
return nil
}
nn := len(target)
if nn == 0 {
return nil
}
errResult := make([]error, nn)
var wg sync.WaitGroup
for i, db := range target {
if db != nil && db.db != nil {
wg.Add(1)
go func(db *wrapper, ind int, wg *sync.WaitGroup) {
errResult[ind] = db.db.Close()
wg.Done()
}(db, i, &wg)
}
}
wg.Wait()
return errResult
}
// Destroy closes all database connections, releasing any open resources.
//
// It is rare to Close a DB, as the DB handle is meant to be
// long-lived and shared between many goroutines.
func (dbs *DBs) Destroy() []error {
res := _close(dbs._all)
if dbs.masters != nil {
dbs.masters.destroy()
}
if dbs.slaves != nil {
dbs.slaves.destroy()
}
dbs.all.destroy()
return res
}
// DestroyMaster closes all master database connections, releasing any open resources.
//
// It is rare to Close a DB, as the DB handle is meant to be
// long-lived and shared between many goroutines.
func (dbs *DBs) DestroyMaster() []error {
if dbs.masters != nil {
dbs.masters.destroy()
}
return _close(dbs._masters)
}
// DestroySlave closes all master database connections, releasing any open resources.
//
// It is rare to Close a DB, as the DB handle is meant to be
// long-lived and shared between many goroutines.
func (dbs *DBs) DestroySlave() []error {
if dbs.slaves != nil {
dbs.slaves.destroy()
}
return _close(dbs._slaves)
}
func _setMaxIdleConns(target []*wrapper, n int) {
if target == nil {
return
}
nn := len(target)
if nn == 0 {
return
}
var wg sync.WaitGroup
for _, db := range target {
if db != nil && db.db != nil {
wg.Add(1)
go func(db *wrapper, wg *sync.WaitGroup) {
db.db.SetMaxIdleConns(n)
wg.Done()
}(db, &wg)
}
}
wg.Wait()
}
// SetHealthCheckPeriod sets the period (in millisecond) for checking health of failed nodes
// for automatic recovery.
//
// Default is 500
func (dbs *DBs) SetHealthCheckPeriod(period uint64) {
dbs.masters.setHealthCheckPeriod(period)
dbs.slaves.setHealthCheckPeriod(period)
}
// SetMasterHealthCheckPeriod sets the period (in millisecond) for checking health of failed master nodes
// for automatic recovery.
//
// Default is 500
func (dbs *DBs) SetMasterHealthCheckPeriod(period uint64) {
dbs.masters.setHealthCheckPeriod(period)
}
// SetSlaveHealthCheckPeriod sets the period (in millisecond) for checking health of failed slave nodes
// for automatic recovery.
//
// Default is 500
func (dbs *DBs) SetSlaveHealthCheckPeriod(period uint64) {
dbs.slaves.setHealthCheckPeriod(period)
}
// SetMaxIdleConns sets the maximum number of connections in the idle
// connection pool for all masters-slaves.
//
// If MaxOpenConns is greater than 0 but less than the new MaxIdleConns
// then the new MaxIdleConns will be reduced to match the MaxOpenConns limit
//
// If n <= 0, no idle connections are retained.
func (dbs *DBs) SetMaxIdleConns(n int) {
_setMaxIdleConns(dbs._all, n)
}
// SetMasterMaxIdleConns sets the maximum number of connections in the idle
// connection pool for masters.
//
// If MaxOpenConns is greater than 0 but less than the new MaxIdleConns
// then the new MaxIdleConns will be reduced to match the MaxOpenConns limit
//
// If n <= 0, no idle connections are retained.
func (dbs *DBs) SetMasterMaxIdleConns(n int) {
_setMaxIdleConns(dbs._masters, n)
}
// SetSlaveMaxIdleConns sets the maximum number of connections in the idle
// connection pool for slaves.
//
// If MaxOpenConns is greater than 0 but less than the new MaxIdleConns
// then the new MaxIdleConns will be reduced to match the MaxOpenConns limit
//
// If n <= 0, no idle connections are retained.
func (dbs *DBs) SetSlaveMaxIdleConns(n int) {
_setMaxIdleConns(dbs._slaves, n)
}
func _setMaxOpenConns(target []*wrapper, n int) {
if target == nil {
return
}
nn := len(target)
if nn == 0 {
return
}
var wg sync.WaitGroup
for _, db := range target {
if db != nil && db.db != nil {
wg.Add(1)
go func(db *wrapper, wg *sync.WaitGroup) {
db.db.SetMaxOpenConns(n)
wg.Done()
}(db, &wg)
}
}
wg.Wait()
}
// SetMaxOpenConns sets the maximum number of open connections to all master-slave databases.
//
// If MaxIdleConns is greater than 0 and the new MaxOpenConns is less than
// MaxIdleConns, then MaxIdleConns will be reduced to match the new
// MaxOpenConns limit
//
// If n <= 0, then there is no limit on the number of open connections.
// The default is 0 (unlimited).
func (dbs *DBs) SetMaxOpenConns(n int) {
_setMaxOpenConns(dbs._all, n)
}
// SetMasterMaxOpenConns sets the maximum number of open connections to the master databases.
//
// If MaxIdleConns is greater than 0 and the new MaxOpenConns is less than
// MaxIdleConns, then MaxIdleConns will be reduced to match the new
// MaxOpenConns limit
//
// If n <= 0, then there is no limit on the number of open connections.
// The default is 0 (unlimited).
func (dbs *DBs) SetMasterMaxOpenConns(n int) {
_setMaxOpenConns(dbs._masters, n)
}
// SetSlaveMaxOpenConns sets the maximum number of open connections to the slave databases.
//
// If MaxIdleConns is greater than 0 and the new MaxOpenConns is less than
// MaxIdleConns, then MaxIdleConns will be reduced to match the new
// MaxOpenConns limit
//
// If n <= 0, then there is no limit on the number of open connections.
// The default is 0 (unlimited).
func (dbs *DBs) SetSlaveMaxOpenConns(n int) {
_setMaxOpenConns(dbs._slaves, n)
}
func _setConnMaxLifetime(target []*wrapper, d time.Duration) {
if target == nil {
return
}
nn := len(target)
if nn == 0 {
return
}
var wg sync.WaitGroup
for _, db := range target {
if db != nil && db.db != nil {
wg.Add(1)
go func(db *wrapper, wg *sync.WaitGroup) {
db.db.SetConnMaxLifetime(d)
wg.Done()
}(db, &wg)
}
}
wg.Wait()
}
// SetConnMaxLifetime sets the maximum amount of time a master-slave connection may be reused.
//
// Expired connections may be closed lazily before reuse.
//
// If d <= 0, connections are reused forever.
func (dbs *DBs) SetConnMaxLifetime(d time.Duration) {
_setConnMaxLifetime(dbs._all, d)
}
// SetMasterConnMaxLifetime sets the maximum amount of time a master connection may be reused.
//
// Expired connections may be closed lazily before reuse.
//
// If d <= 0, connections are reused forever.
func (dbs *DBs) SetMasterConnMaxLifetime(d time.Duration) {
_setConnMaxLifetime(dbs._masters, d)
}
// SetSlaveConnMaxLifetime sets the maximum amount of time a slave connection may be reused.
//
// Expired connections may be closed lazily before reuse.
//
// If d <= 0, connections are reused forever.
func (dbs *DBs) SetSlaveConnMaxLifetime(d time.Duration) {
_setConnMaxLifetime(dbs._slaves, d)
}
func _stats(target []*wrapper) []sql.DBStats {
if target == nil {
return nil
}
nn := len(target)
if nn == 0 {
return nil
}
result := make([]sql.DBStats, nn)
var wg sync.WaitGroup
for ind, db := range target {
if db != nil && db.db != nil {
wg.Add(1)
go func(db *wrapper, ind int, wg *sync.WaitGroup) {
result[ind] = db.db.Stats()
wg.Done()
}(db, ind, &wg)
}
}
wg.Wait()
return result
}
// Stats returns database statistics.
func (dbs *DBs) Stats() (stats []sql.DBStats) {
stats = _stats(dbs._all)
return
}
// StatsMaster returns master database statistics.
func (dbs *DBs) StatsMaster() (stats []sql.DBStats) {
stats = _stats(dbs._masters)
return
}
// StatsSlave returns slave database statistics.
func (dbs *DBs) StatsSlave() (stats []sql.DBStats) {
stats = _stats(dbs._slaves)
return
}
func _mapperFunc(target []*wrapper, mf func(string) string) {
if target == nil {
return
}
nn := len(target)
if nn == 0 {
return
}
var wg sync.WaitGroup
for ind, db := range target {
if db != nil {
wg.Add(1)
go func(db *wrapper, _ int) {
db.db.MapperFunc(mf)
wg.Done()
}(db, ind)
}
}
wg.Wait()
}
// MapperFunc sets a new mapper for this db using the default sqlx struct tag
// and the provided mapper function.
func (dbs *DBs) MapperFunc(mf func(string) string) {
_mapperFunc(dbs._all, mf)
}
// MapperFuncMaster sets a new mapper for this db using the default sqlx struct tag
// and the provided mapper function.
func (dbs *DBs) MapperFuncMaster(mf func(string) string) {
_mapperFunc(dbs._masters, mf)
}
// MapperFuncSlave sets a new mapper for this db using the default sqlx struct tag
// and the provided mapper function.
func (dbs *DBs) MapperFuncSlave(mf func(string) string) {
_mapperFunc(dbs._slaves, mf)
}
// Rebind transforms a query from QUESTION to the DB driver's bindvar type.
func (dbs *DBs) Rebind(query string) string {
if dbs._all == nil || len(dbs._all) == 0 {
return ""
}
for _, db := range dbs._all {
if db != nil && db.db != nil {
return db.db.Rebind(query)
}
}
return ""
}
// BindNamed binds a query using the DB driver's bindvar type.
func (dbs *DBs) BindNamed(query string, arg interface{}) (string, []interface{}, error) {
if dbs._all == nil || len(dbs._all) == 0 {
return "", nil, ErrNoConnection
}
for _, db := range dbs._all {
if db != nil {
return db.db.BindNamed(query, arg)
}
}
return "", nil, ErrNoConnection
}
func getDBFromBalancer(target *balancer) (db *wrapper, err error) {
if db = target.get(target.isMulti); db != nil {
return
}
// retry if there is no connection available. This event could happen when database closes all non-interactive connection.
for i := 0; i < 3; i++ {
time.Sleep(time.Duration(target.getHealthCheckPeriod()) * time.Millisecond)
if db = target.get(target.isMulti); db != nil {
return
}
}
// need to return error
if target.isWsrep {
err = ErrNoConnectionOrWsrep
} else {
err = ErrNoConnection
}
return
}
func shouldFailure(w *wrapper, isWsrep bool, err error) (bool, error) {
if err == nil || isStdErr(err) {
return false, err
}
if isWsrep && IsWsrepNotReady(err) {
return true, err
}
if e := ping(w); e != nil {
err = multierror.Append(err, e).ErrorOrNil()
return true, err
}
return false, err
}
func _namedQuery(ctx context.Context, target *balancer, query string, arg interface{}) (res *sqlx.Rows, err error) {
var (
w *wrapper
r interface{}
)
for {
if w, err = getDBFromBalancer(target); err != nil {
reportError(query, err)
return
}
r, err = retryFunc(query, func() (interface{}, error) {
return w.db.NamedQueryContext(ctx, query, arg)
})
if r != nil {
res = r.(*sqlx.Rows)
}
// check networking/wsrep error
var should bool
if should, err = shouldFailure(w, target.isWsrep, err); should {
target.failure(w, err)
continue
}
return
}
}
// NamedQuery do named query.
// Any named placeholder parameters are replaced with fields from arg.
func (dbs *DBs) NamedQuery(query string, arg interface{}) (*sqlx.Rows, error) {
return _namedQuery(context.Background(), dbs.readBalancer(), query, arg)
}
// NamedQueryOnMaster do named query on master.
// Any named placeholder parameters are replaced with fields from arg.
func (dbs *DBs) NamedQueryOnMaster(query string, arg interface{}) (*sqlx.Rows, error) {
return _namedQuery(context.Background(), dbs.masters, query, arg)
}
// NamedQueryContext do named query with context.
// Any named placeholder parameters are replaced with fields from arg.
func (dbs *DBs) NamedQueryContext(ctx context.Context, query string, arg interface{}) (*sqlx.Rows, error) {
return _namedQuery(ctx, dbs.readBalancer(), query, arg)
}
// NamedQueryContextOnMaster do named query with context on master.
// Any named placeholder parameters are replaced with fields from arg.
func (dbs *DBs) NamedQueryContextOnMaster(ctx context.Context, query string, arg interface{}) (*sqlx.Rows, error) {
return _namedQuery(ctx, dbs.masters, query, arg)
}
func _namedExec(ctx context.Context, target *balancer, query string, arg interface{}) (res sql.Result, err error) {
var (
w *wrapper
r interface{}
)
for {
if w, err = getDBFromBalancer(target); err != nil {
reportError(query, err)
return
}
// executing
r, err = retryFunc(query, func() (interface{}, error) {
return w.db.NamedExecContext(ctx, query, arg)
})
if r != nil {
res = r.(sql.Result)
}
// check networking/wsrep error
var should bool
if should, err = shouldFailure(w, target.isWsrep, err); should {
target.failure(w, err)
continue
}
return
}
}
// NamedExec do named exec.
// Any named placeholder parameters are replaced with fields from arg.
func (dbs *DBs) NamedExec(query string, arg interface{}) (sql.Result, error) {
return _namedExec(context.Background(), dbs.masters, query, arg)
}
// NamedExecOnSlave do named exec on slave.
// Any named placeholder parameters are replaced with fields from arg.
func (dbs *DBs) NamedExecOnSlave(query string, arg interface{}) (sql.Result, error) {
return _namedExec(context.Background(), dbs.slaves, query, arg)
}
// NamedExecContext do named exec with context.
// Any named placeholder parameters are replaced with fields from arg.
func (dbs *DBs) NamedExecContext(ctx context.Context, query string, arg interface{}) (sql.Result, error) {
return _namedExec(ctx, dbs.masters, query, arg)
}
// NamedExecContextOnSlave do named exec with context on slave.
// Any named placeholder parameters are replaced with fields from arg.
func (dbs *DBs) NamedExecContextOnSlave(ctx context.Context, query string, arg interface{}) (sql.Result, error) {
return _namedExec(ctx, dbs.slaves, query, arg)
}
func _query(ctx context.Context, target *balancer, query string, args ...interface{}) (dbr *wrapper, res *sql.Rows, err error) {
var (
w *wrapper
r interface{}
)
for {
if w, err = getDBFromBalancer(target); err != nil {
reportError(query, err)
return
}
// executing
r, err = retryFunc(query, func() (interface{}, error) {
return w.db.QueryContext(ctx, query, args...)
})
if r != nil {
res = r.(*sql.Rows)
}
// check networking/wsrep error
var should bool
if should, err = shouldFailure(w, target.isWsrep, err); should {
target.failure(w, err)
continue
}
dbr = w
return
}
}
// Query executes a query on slaves that returns rows, typically a SELECT.
// The args are for any placeholder parameters in the query.
func (dbs *DBs) Query(query string, args ...interface{}) (r *sql.Rows, err error) {
_, r, err = _query(context.Background(), dbs.readBalancer(), query, args...)
return
}
// QueryOnMaster executes a query on masters that returns rows, typically a SELECT.
// The args are for any placeholder parameters in the query.
func (dbs *DBs) QueryOnMaster(query string, args ...interface{}) (r *sql.Rows, err error) {
_, r, err = _query(context.Background(), dbs.masters, query, args...)
return
}
// QueryContext executes a query on slaves that returns rows, typically a SELECT.
// The args are for any placeholder parameters in the query.
func (dbs *DBs) QueryContext(ctx context.Context, query string, args ...interface{}) (r *sql.Rows, err error) {
_, r, err = _query(ctx, dbs.readBalancer(), query, args...)
return
}
// QueryContextOnMaster executes a query on masters that returns rows, typically a SELECT.
// The args are for any placeholder parameters in the query.
func (dbs *DBs) QueryContextOnMaster(ctx context.Context, query string, args ...interface{}) (r *sql.Rows, err error) {
_, r, err = _query(ctx, dbs.masters, query, args...)
return
}
func _queryx(ctx context.Context, target *balancer, query string, args ...interface{}) (dbr *wrapper, res *sqlx.Rows, err error) {
var (
w *wrapper
r interface{}
)
for {
if w, err = getDBFromBalancer(target); err != nil {
reportError(query, err)
return
}
// executing
r, err = retryFunc(query, func() (interface{}, error) {
return w.db.QueryxContext(ctx, query, args...)
})
if r != nil {
res = r.(*sqlx.Rows)
}
// check networking/wsrep error
var should bool
if should, err = shouldFailure(w, target.isWsrep, err); should {
target.failure(w, err)
continue
}
dbr = w
return
}
}
// Queryx executes a query on slaves that returns rows, typically a SELECT.
// The args are for any placeholder parameters in the query.
func (dbs *DBs) Queryx(query string, args ...interface{}) (r *sqlx.Rows, err error) {
_, r, err = _queryx(context.Background(), dbs.readBalancer(), query, args...)
return
}
// QueryxOnMaster executes a query on masters that returns rows, typically a SELECT.
// The args are for any placeholder parameters in the query.
func (dbs *DBs) QueryxOnMaster(query string, args ...interface{}) (r *sqlx.Rows, err error) {
_, r, err = _queryx(context.Background(), dbs.masters, query, args...)
return
}
// QueryxContext executes a query on slaves that returns rows, typically a SELECT.
// The args are for any placeholder parameters in the query.
func (dbs *DBs) QueryxContext(ctx context.Context, query string, args ...interface{}) (r *sqlx.Rows, err error) {
_, r, err = _queryx(ctx, dbs.readBalancer(), query, args...)
return
}
// QueryxContextOnMaster executes a query on masters that returns rows, typically a SELECT.
// The args are for any placeholder parameters in the query.
func (dbs *DBs) QueryxContextOnMaster(ctx context.Context, query string, args ...interface{}) (r *sqlx.Rows, err error) {
_, r, err = _queryx(ctx, dbs.masters, query, args...)
return
}
func (dbs *DBs) _queryRow(ctx context.Context, target *balancer, query string, args ...interface{}) *sql.Row {
w, err := getDBFromBalancer(target)
if err != nil {
// no available node -> pick one
w = dbs._all[0]
}
return w.db.QueryRowContext(ctx, query, args...)
}
// QueryRow executes a query on slaves that is expected to return at most one row.
// QueryRow always returns a non-nil value. Errors are deferred until
// Row's Scan method is called.
func (dbs *DBs) QueryRow(query string, args ...interface{}) *sql.Row {
return dbs._queryRow(context.Background(), dbs.readBalancer(), query, args...)
}
// QueryRowOnMaster executes a query on masters that is expected to return at most one row.
// QueryRow always returns a non-nil value. Errors are deferred until
// Row's Scan method is called.
func (dbs *DBs) QueryRowOnMaster(query string, args ...interface{}) *sql.Row {
return dbs._queryRow(context.Background(), dbs.masters, query, args...)
}
// QueryRowContext executes a query on slaves that is expected to return at most one row.
// QueryRow always returns a non-nil value. Errors are deferred until
// Row's Scan method is called.
func (dbs *DBs) QueryRowContext(ctx context.Context, query string, args ...interface{}) *sql.Row {
return dbs._queryRow(ctx, dbs.readBalancer(), query, args...)
}
// QueryRowContextOnMaster executes a query on masters that is expected to return at most one row.
// QueryRow always returns a non-nil value. Errors are deferred until
// Row's Scan method is called.
func (dbs *DBs) QueryRowContextOnMaster(ctx context.Context, query string, args ...interface{}) *sql.Row {
return dbs._queryRow(ctx, dbs.masters, query, args...)
}
func (dbs *DBs) _queryRowx(ctx context.Context, target *balancer, query string, args ...interface{}) *sqlx.Row {
w, err := getDBFromBalancer(target)
if err != nil {
// no available node -> pick one
w = dbs._all[0]
}
return w.db.QueryRowxContext(ctx, query, args...)
}
// QueryRowx executes a query on slaves that is expected to return at most one row.
// But return sqlx.Row instead of sql.Row.
// QueryRow always returns a non-nil value. Errors are deferred until
// Row's Scan method is called.
func (dbs *DBs) QueryRowx(query string, args ...interface{}) *sqlx.Row {
return dbs._queryRowx(context.Background(), dbs.readBalancer(), query, args...)
}
// QueryRowxOnMaster executes a query on masters that is expected to return at most one row.
// QueryRow always returns a non-nil value. Errors are deferred until
// Row's Scan method is called.
func (dbs *DBs) QueryRowxOnMaster(query string, args ...interface{}) *sqlx.Row {
return dbs._queryRowx(context.Background(), dbs.masters, query, args...)
}
// QueryRowxContext executes a query on slaves that is expected to return at most one row.
// QueryRow always returns a non-nil value. Errors are deferred until
// Row's Scan method is called.
func (dbs *DBs) QueryRowxContext(ctx context.Context, query string, args ...interface{}) *sqlx.Row {
return dbs._queryRowx(ctx, dbs.readBalancer(), query, args...)
}
// QueryRowxContextOnMaster executes a query on masters that is expected to return at most one row.
// QueryRow always returns a non-nil value. Errors are deferred until
// Row's Scan method is called.
func (dbs *DBs) QueryRowxContextOnMaster(ctx context.Context, query string, args ...interface{}) *sqlx.Row {
return dbs._queryRowx(ctx, dbs.masters, query, args...)
}
func _select(ctx context.Context, target *balancer, dest interface{}, query string, args ...interface{}) (dbr *wrapper, err error) {
var w *wrapper
for {
if w, err = getDBFromBalancer(target); err != nil {
reportError(query, err)
return
}
// executing
_, err = retryFunc(query, func() (interface{}, error) {
return nil, w.db.SelectContext(ctx, dest, query, args...)
})
// check networking/wsrep error
var should bool
if should, err = shouldFailure(w, target.isWsrep, err); should {
target.failure(w, err)
continue
}
dbr = w
return
}
}
// Select do select on slaves.
// Any placeholder parameters are replaced with supplied args.
func (dbs *DBs) Select(dest interface{}, query string, args ...interface{}) (err error) {
_, err = _select(context.Background(), dbs.readBalancer(), dest, query, args...)
return
}
// SelectOnMaster do select on masters.
// Any placeholder parameters are replaced with supplied args.
func (dbs *DBs) SelectOnMaster(dest interface{}, query string, args ...interface{}) (err error) {
_, err = _select(context.Background(), dbs.masters, dest, query, args...)
return
}
// SelectContext do select on slaves with context.
// Any placeholder parameters are replaced with supplied args.
func (dbs *DBs) SelectContext(ctx context.Context, dest interface{}, query string, args ...interface{}) (err error) {
_, err = _select(ctx, dbs.readBalancer(), dest, query, args...)
return
}
// SelectContextOnMaster do select on masters with context.
// Any placeholder parameters are replaced with supplied args.
func (dbs *DBs) SelectContextOnMaster(ctx context.Context, dest interface{}, query string, args ...interface{}) (err error) {
_, err = _select(ctx, dbs.masters, dest, query, args...)
return
}
func _get(ctx context.Context, target *balancer, dest interface{}, query string, args ...interface{}) (dbr *wrapper, err error) {
var w *wrapper
for {
if w, err = getDBFromBalancer(target); err != nil {
reportError(query, err)
return
}
// executing
_, err = retryFunc(query, func() (interface{}, error) {
return nil, w.db.GetContext(ctx, dest, query, args...)
})
// check networking/wsrep error
var should bool
if should, err = shouldFailure(w, target.isWsrep, err); should {
target.failure(w, err)
continue
}
dbr = w
return
}
}
// Get on slaves.
// Any placeholder parameters are replaced with supplied args.
// An error is returned if the result set is empty.
func (dbs *DBs) Get(dest interface{}, query string, args ...interface{}) (err error) {
_, err = _get(context.Background(), dbs.readBalancer(), dest, query, args...)
return
}
// GetOnMaster on masters.
// Any placeholder parameters are replaced with supplied args.
// An error is returned if the result set is empty.
func (dbs *DBs) GetOnMaster(dest interface{}, query string, args ...interface{}) (err error) {
_, err = _get(context.Background(), dbs.masters, dest, query, args...)
return
}
// GetContext on slaves.
// Any placeholder parameters are replaced with supplied args.
// An error is returned if the result set is empty.
func (dbs *DBs) GetContext(ctx context.Context, dest interface{}, query string, args ...interface{}) (err error) {
_, err = _get(ctx, dbs.readBalancer(), dest, query, args...)
return
}
// GetContextOnMaster on masters.
// Any placeholder parameters are replaced with supplied args.
// An error is returned if the result set is empty.
func (dbs *DBs) GetContextOnMaster(ctx context.Context, dest interface{}, query string, args ...interface{}) (err error) {
_, err = _get(ctx, dbs.masters, dest, query, args...)
return
}
func _exec(ctx context.Context, target *balancer, query string, args ...interface{}) (res sql.Result, err error) {
var (
w *wrapper
r interface{}
)
for {
if w, err = getDBFromBalancer(target); err != nil {
reportError(query, err)
return
}
// executing
r, err = retryFunc(query, func() (interface{}, error) {
return w.db.ExecContext(ctx, query, args...)
})
if r != nil {
res = r.(sql.Result)
}
// check networking/wsrep error
var should bool
if should, err = shouldFailure(w, target.isWsrep, err); should {
target.failure(w, err)
continue
}
return
}
}
// Exec do exec on masters.
func (dbs *DBs) Exec(query string, args ...interface{}) (sql.Result, error) {
return _exec(context.Background(), dbs.masters, query, args...)
}
// ExecOnSlave do exec on slaves.
func (dbs *DBs) ExecOnSlave(query string, args ...interface{}) (sql.Result, error) {
return _exec(context.Background(), dbs.slaves, query, args...)
}
// ExecContext do exec on masters with context
func (dbs *DBs) ExecContext(ctx context.Context, query string, args ...interface{}) (sql.Result, error) {
return _exec(ctx, dbs.masters, query, args...)
}