-
Notifications
You must be signed in to change notification settings - Fork 904
/
Copy pathtopology.go
1157 lines (979 loc) · 33.9 KB
/
topology.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
// Copyright (C) MongoDB, Inc. 2017-present.
//
// 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
// Package topology is intended for internal use only. It is made available to
// facilitate use cases that require access to internal MongoDB driver
// functionality and state. The API of this package is not stable and there is
// no backward compatibility guarantee.
//
// WARNING: THIS PACKAGE IS EXPERIMENTAL AND MAY BE MODIFIED OR REMOVED WITHOUT
// NOTICE! USE WITH EXTREME CAUTION!
//
// Package topology contains types that handles the discovery, monitoring, and
// selection of servers. This package is designed to expose enough inner
// workings of service discovery and monitoring to allow low level applications
// to have fine grained control, while hiding most of the detailed
// implementation of the algorithms.
package topology
import (
"context"
"errors"
"fmt"
"net"
"strconv"
"strings"
"sync"
"sync/atomic"
"time"
"go.mongodb.org/mongo-driver/v2/bson"
"go.mongodb.org/mongo-driver/v2/event"
"go.mongodb.org/mongo-driver/v2/internal/driverutil"
"go.mongodb.org/mongo-driver/v2/internal/logger"
"go.mongodb.org/mongo-driver/v2/internal/randutil"
"go.mongodb.org/mongo-driver/v2/mongo/address"
"go.mongodb.org/mongo-driver/v2/mongo/options"
"go.mongodb.org/mongo-driver/v2/x/mongo/driver"
"go.mongodb.org/mongo-driver/v2/x/mongo/driver/connstring"
"go.mongodb.org/mongo-driver/v2/x/mongo/driver/description"
"go.mongodb.org/mongo-driver/v2/x/mongo/driver/dns"
)
// Topology state constants.
const (
topologyDisconnected int64 = iota
topologyDisconnecting
topologyConnected
topologyConnecting
)
// ErrSubscribeAfterClosed is returned when a user attempts to subscribe to a
// closed Server or Topology.
var ErrSubscribeAfterClosed = errors.New("cannot subscribe after closeConnection")
// ErrTopologyClosed is returned when a user attempts to call a method on a
// closed Topology.
var ErrTopologyClosed = errors.New("topology is closed")
// ErrTopologyConnected is returned whena user attempts to Connect to an
// already connected Topology.
var ErrTopologyConnected = errors.New("topology is connected or connecting")
// MonitorMode represents the way in which a server is monitored.
type MonitorMode uint8
// random is a package-global pseudo-random number generator.
var random = randutil.NewLockedRand()
// These constants are the available monitoring modes.
const (
AutomaticMode MonitorMode = iota
SingleMode
)
// Topology represents a MongoDB deployment.
type Topology struct {
state int64
cfg *Config
desc atomic.Value // holds a description.Topology
dnsResolver *dns.Resolver
done chan struct{}
pollingRequired bool
pollingDone chan struct{}
pollingwg sync.WaitGroup
rescanSRVInterval time.Duration
pollHeartbeatTime atomic.Value // holds a bool
hosts []string
updateCallback updateTopologyCallback
fsm *fsm
// This should really be encapsulated into it's own type. This will likely
// require a redesign so we can share a minimum of data between the
// subscribers and the topology.
subscribers map[uint64]chan description.Topology
currentSubscriberID uint64
subscriptionsClosed bool
subLock sync.Mutex
// We should redesign how we Connect and handle individual servers. This is
// too difficult to maintain and it's rather easy to accidentally access
// the servers without acquiring the lock or checking if the servers are
// closed. This lock should also be an RWMutex.
serversLock sync.Mutex
serversClosed bool
servers map[address.Address]*Server
id bson.ObjectID
}
var (
_ driver.Deployment = &Topology{}
_ driver.Subscriber = &Topology{}
)
// New creates a new topology. A "nil" config is interpreted as the default configuration.
func New(cfg *Config) (*Topology, error) {
if cfg == nil {
var err error
cfg, err = NewConfig(options.Client(), nil)
if err != nil {
return nil, err
}
}
t := &Topology{
cfg: cfg,
done: make(chan struct{}),
pollingDone: make(chan struct{}),
rescanSRVInterval: 60 * time.Second,
fsm: newFSM(),
subscribers: make(map[uint64]chan description.Topology),
servers: make(map[address.Address]*Server),
dnsResolver: dns.DefaultResolver,
id: bson.NewObjectID(),
}
t.desc.Store(description.Topology{})
t.updateCallback = func(desc description.Server) description.Server {
return t.apply(context.Background(), desc)
}
if t.cfg.URI != "" {
connStr, err := connstring.Parse(t.cfg.URI)
if err != nil {
return nil, err
}
t.pollingRequired = (connStr.Scheme == connstring.SchemeMongoDBSRV) && !t.cfg.LoadBalanced
t.hosts = connStr.RawHosts
}
t.publishTopologyOpeningEvent()
return t, nil
}
func mustLogTopologyMessage(topo *Topology, level logger.Level) bool {
return topo.cfg.logger != nil && topo.cfg.logger.LevelComponentEnabled(
level, logger.ComponentTopology)
}
func logTopologyMessage(topo *Topology, level logger.Level, msg string, keysAndValues ...interface{}) {
topo.cfg.logger.Print(level,
logger.ComponentTopology,
msg,
logger.SerializeTopology(logger.Topology{
ID: topo.id,
Message: msg,
}, keysAndValues...)...)
}
func logTopologyThirdPartyUsage(topo *Topology, parsedHosts []string) {
thirdPartyMessages := [2]string{
`You appear to be connected to a CosmosDB cluster. For more information regarding feature compatibility and support please visit https://www.mongodb.com/supportability/cosmosdb`,
`You appear to be connected to a DocumentDB cluster. For more information regarding feature compatibility and support please visit https://www.mongodb.com/supportability/documentdb`,
}
thirdPartySuffixes := map[string]int{
".cosmos.azure.com": 0,
".docdb.amazonaws.com": 1,
".docdb-elastic.amazonaws.com": 1,
}
hostSet := make([]bool, len(thirdPartyMessages))
for _, host := range parsedHosts {
if h, _, err := net.SplitHostPort(host); err == nil {
host = h
}
for suffix, env := range thirdPartySuffixes {
if !strings.HasSuffix(host, suffix) {
continue
}
if hostSet[env] {
break
}
hostSet[env] = true
logTopologyMessage(topo, logger.LevelInfo, thirdPartyMessages[env])
}
}
}
func mustLogServerSelection(topo *Topology, level logger.Level) bool {
return topo.cfg.logger != nil && topo.cfg.logger.LevelComponentEnabled(
level, logger.ComponentServerSelection)
}
func logServerSelection(
ctx context.Context,
topo *Topology,
level logger.Level,
msg string,
srvSelector description.ServerSelector,
keysAndValues ...interface{},
) {
var srvSelectorString string
selectorStringer, ok := srvSelector.(fmt.Stringer)
if ok {
srvSelectorString = selectorStringer.String()
}
operationName, _ := logger.OperationName(ctx)
operationID, _ := logger.OperationID(ctx)
topo.cfg.logger.Print(level,
logger.ComponentServerSelection,
msg,
logger.SerializeServerSelection(logger.ServerSelection{
Selector: srvSelectorString,
Operation: operationName,
OperationID: &operationID,
TopologyDescription: topo.String(),
}, keysAndValues...)...)
}
func logServerSelectionSucceeded(
ctx context.Context,
topo *Topology,
srvSelector description.ServerSelector,
server *SelectedServer,
) {
host, port, err := net.SplitHostPort(server.address.String())
if err != nil {
host = server.address.String()
port = ""
}
portInt64, _ := strconv.ParseInt(port, 10, 32)
logServerSelection(ctx, topo, logger.LevelDebug, logger.ServerSelectionSucceeded, srvSelector,
logger.KeyServerHost, host,
logger.KeyServerPort, portInt64)
}
func logServerSelectionFailed(
ctx context.Context,
topo *Topology,
srvSelector description.ServerSelector,
err error,
) {
logServerSelection(ctx, topo, logger.LevelDebug, logger.ServerSelectionFailed, srvSelector,
logger.KeyFailure, err.Error())
}
// Connect initializes a Topology and starts the monitoring process. This function
// must be called to properly monitor the topology.
func (t *Topology) Connect() error {
if !atomic.CompareAndSwapInt64(&t.state, topologyDisconnected, topologyConnecting) {
return ErrTopologyConnected
}
t.desc.Store(description.Topology{})
var err error
t.serversLock.Lock()
// A replica set name sets the initial topology type to ReplicaSetNoPrimary unless a direct connection is also
// specified, in which case the initial type is Single.
if t.cfg.ReplicaSetName != "" {
t.fsm.SetName = t.cfg.ReplicaSetName
t.fsm.Kind = description.TopologyKindReplicaSetNoPrimary
}
// A direct connection unconditionally sets the topology type to Single.
if t.cfg.Mode == SingleMode {
t.fsm.Kind = description.TopologyKindSingle
}
for _, a := range t.cfg.SeedList {
addr := address.Address(a).Canonicalize()
t.fsm.Servers = append(t.fsm.Servers, newServerDescriptionFromError(addr, nil, nil))
}
switch {
case t.cfg.LoadBalanced:
// In LoadBalanced mode, we mock a series of events: TopologyDescriptionChanged from Unknown to LoadBalanced,
// ServerDescriptionChanged from Unknown to LoadBalancer, and then TopologyDescriptionChanged to reflect the
// previous ServerDescriptionChanged event. We publish all of these events here because we don't start server
// monitoring routines in this mode, so we have to mock state changes.
// Transition from Unknown with no servers to LoadBalanced with a single Unknown server.
t.fsm.Kind = description.TopologyKindLoadBalanced
t.publishTopologyDescriptionChangedEvent(description.Topology{}, t.fsm.Topology)
addr := address.Address(t.cfg.SeedList[0]).Canonicalize()
if err := t.addServer(addr); err != nil {
t.serversLock.Unlock()
return err
}
// Transition the server from Unknown to LoadBalancer.
newServerDesc := t.servers[addr].Description()
t.publishServerDescriptionChangedEvent(t.fsm.Servers[0], newServerDesc)
// Transition from LoadBalanced with an Unknown server to LoadBalanced with a LoadBalancer.
oldDesc := t.fsm.Topology
t.fsm.Servers = []description.Server{newServerDesc}
t.desc.Store(t.fsm.Topology)
t.publishTopologyDescriptionChangedEvent(oldDesc, t.fsm.Topology)
default:
// In non-LB mode, we only publish an initial TopologyDescriptionChanged event from Unknown with no servers to
// the current state (e.g. Unknown with one or more servers if we're discovering or Single with one server if
// we're connecting directly). Other events are published when state changes occur due to responses in the
// server monitoring goroutines.
newDesc := description.Topology{
Kind: t.fsm.Kind,
Servers: t.fsm.Servers,
SessionTimeoutMinutes: t.fsm.SessionTimeoutMinutes,
}
t.desc.Store(newDesc)
t.publishTopologyDescriptionChangedEvent(description.Topology{}, t.fsm.Topology)
for _, a := range t.cfg.SeedList {
addr := address.Address(a).Canonicalize()
err = t.addServer(addr)
if err != nil {
t.serversLock.Unlock()
return err
}
}
}
t.serversLock.Unlock()
if mustLogTopologyMessage(t, logger.LevelInfo) {
logTopologyThirdPartyUsage(t, t.hosts)
}
if t.pollingRequired {
// sanity check before passing the hostname to resolver
if len(t.hosts) != 1 {
return fmt.Errorf("URI with SRV must include one and only one hostname")
}
_, _, err = net.SplitHostPort(t.hosts[0])
if err == nil {
// we were able to successfully extract a port from the host,
// but should not be able to when using SRV
return fmt.Errorf("URI with srv must not include a port number")
}
go t.pollSRVRecords(t.hosts[0])
t.pollingwg.Add(1)
}
t.subscriptionsClosed = false // explicitly set in case topology was disconnected and then reconnected
atomic.StoreInt64(&t.state, topologyConnected)
return nil
}
// Disconnect closes the topology. It stops the monitoring thread and
// closes all open subscriptions.
func (t *Topology) Disconnect(ctx context.Context) error {
if !atomic.CompareAndSwapInt64(&t.state, topologyConnected, topologyDisconnecting) {
return ErrTopologyClosed
}
servers := make(map[address.Address]*Server)
t.serversLock.Lock()
t.serversClosed = true
for addr, server := range t.servers {
servers[addr] = server
}
t.serversLock.Unlock()
for _, server := range servers {
_ = server.Disconnect(ctx)
t.publishServerClosedEvent(server.address)
}
t.subLock.Lock()
for id, ch := range t.subscribers {
close(ch)
delete(t.subscribers, id)
}
t.subscriptionsClosed = true
t.subLock.Unlock()
if t.pollingRequired {
t.pollingDone <- struct{}{}
t.pollingwg.Wait()
}
oldDesc := t.fsm.Topology
t.fsm = newFSM()
t.desc.Store(t.fsm.Topology)
t.publishTopologyDescriptionChangedEvent(oldDesc, t.fsm.Topology)
atomic.StoreInt64(&t.state, topologyDisconnected)
t.publishTopologyClosedEvent()
return nil
}
// Description returns a description of the topology.
func (t *Topology) Description() description.Topology {
td, ok := t.desc.Load().(description.Topology)
if !ok {
td = description.Topology{}
}
return td
}
// Kind returns the topology kind of this Topology.
func (t *Topology) Kind() description.TopologyKind { return t.Description().Kind }
// Subscribe returns a Subscription on which all updated description.Topologys
// will be sent. The channel of the subscription will have a buffer size of one,
// and will be pre-populated with the current description.Topology.
// Subscribe implements the driver.Subscriber interface.
func (t *Topology) Subscribe() (*driver.Subscription, error) {
if atomic.LoadInt64(&t.state) != topologyConnected {
return nil, errors.New("cannot subscribe to Topology that is not connected")
}
ch := make(chan description.Topology, 1)
td, ok := t.desc.Load().(description.Topology)
if !ok {
td = description.Topology{}
}
ch <- td
t.subLock.Lock()
defer t.subLock.Unlock()
if t.subscriptionsClosed {
return nil, ErrSubscribeAfterClosed
}
id := t.currentSubscriberID
t.subscribers[id] = ch
t.currentSubscriberID++
return &driver.Subscription{
Updates: ch,
ID: id,
}, nil
}
// Unsubscribe unsubscribes the given subscription from the topology and closes the subscription channel.
// Unsubscribe implements the driver.Subscriber interface.
func (t *Topology) Unsubscribe(sub *driver.Subscription) error {
t.subLock.Lock()
defer t.subLock.Unlock()
if t.subscriptionsClosed {
return nil
}
ch, ok := t.subscribers[sub.ID]
if !ok {
return nil
}
close(ch)
delete(t.subscribers, sub.ID)
return nil
}
// RequestImmediateCheck will send heartbeats to all the servers in the
// topology right away, instead of waiting for the heartbeat timeout.
func (t *Topology) RequestImmediateCheck() {
if atomic.LoadInt64(&t.state) != topologyConnected {
return
}
t.serversLock.Lock()
for _, server := range t.servers {
server.RequestImmediateCheck()
}
t.serversLock.Unlock()
}
// SelectServer selects a server with given a selector, returning the remaining
// computedServerSelectionTimeout.
func (t *Topology) SelectServer(ctx context.Context, ss description.ServerSelector) (driver.Server, error) {
if atomic.LoadInt64(&t.state) != topologyConnected {
if mustLogServerSelection(t, logger.LevelDebug) {
logServerSelectionFailed(ctx, t, ss, ErrTopologyClosed)
}
return nil, ErrTopologyClosed
}
var doneOnce bool
var sub *driver.Subscription
// Record the start time.
startTime := time.Now()
for {
var suitable []description.Server
var selectErr error
if !doneOnce {
if mustLogServerSelection(t, logger.LevelDebug) {
logServerSelection(ctx, t, logger.LevelDebug, logger.ServerSelectionStarted, ss)
}
// for the first pass, select a server from the current description.
// this improves selection speed for up-to-date topology descriptions.
suitable, selectErr = t.selectServerFromDescription(t.Description(), ss)
doneOnce = true
} else {
// if the first pass didn't select a server, the previous description did not contain a suitable server, so
// we subscribe to the topology and attempt to obtain a server from that subscription
if sub == nil {
var err error
sub, err = t.Subscribe()
if err != nil {
if mustLogServerSelection(t, logger.LevelDebug) {
logServerSelectionFailed(ctx, t, ss, err)
}
return nil, err
}
defer func() { _ = t.Unsubscribe(sub) }()
}
suitable, selectErr = t.selectServerFromSubscription(ctx, sub.Updates, ss)
}
if selectErr != nil {
if mustLogServerSelection(t, logger.LevelDebug) {
logServerSelectionFailed(ctx, t, ss, selectErr)
}
return nil, selectErr
}
if len(suitable) == 0 {
// try again if there are no servers available
if mustLogServerSelection(t, logger.LevelInfo) {
elapsed := time.Since(startTime)
remainingTimeMS := t.cfg.ServerSelectionTimeout - elapsed
logServerSelection(ctx, t, logger.LevelInfo, logger.ServerSelectionWaiting, ss,
logger.KeyRemainingTimeMS, remainingTimeMS.Milliseconds())
}
continue
}
// If there's only one suitable server description, try to find the associated server and
// return it. This is an optimization primarily for standalone and load-balanced deployments.
if len(suitable) == 1 {
server, err := t.FindServer(suitable[0])
if err != nil {
if mustLogServerSelection(t, logger.LevelDebug) {
logServerSelectionFailed(ctx, t, ss, err)
}
return nil, err
}
if server == nil {
continue
}
if mustLogServerSelection(t, logger.LevelDebug) {
logServerSelectionSucceeded(ctx, t, ss, server)
}
return server, nil
}
// Randomly select 2 suitable server descriptions and find servers for them. We select two
// so we can pick the one with the one with fewer in-progress operations below.
desc1, desc2 := pick2(suitable)
server1, err := t.FindServer(desc1)
if err != nil {
if mustLogServerSelection(t, logger.LevelDebug) {
logServerSelectionFailed(ctx, t, ss, err)
}
return nil, err
}
server2, err := t.FindServer(desc2)
if err != nil {
if mustLogServerSelection(t, logger.LevelDebug) {
logServerSelectionFailed(ctx, t, ss, err)
}
return nil, err
}
// If we don't have an actual server for one or both of the provided descriptions, either
// return the one server we have, or try again if they're both nil. This could happen for a
// number of reasons, including that the server has since stopped being a part of this
// topology.
if server1 == nil || server2 == nil {
if server1 == nil && server2 == nil {
continue
}
if server1 != nil {
if mustLogServerSelection(t, logger.LevelDebug) {
logServerSelectionSucceeded(ctx, t, ss, server1)
}
return server1, nil
}
if mustLogServerSelection(t, logger.LevelDebug) {
logServerSelectionSucceeded(ctx, t, ss, server2)
}
return server2, nil
}
// Of the two randomly selected suitable servers, pick the one with fewer in-use connections.
// We use in-use connections as an analog for in-progress operations because they are almost
// always the same value for a given server.
if server1.OperationCount() < server2.OperationCount() {
if mustLogServerSelection(t, logger.LevelDebug) {
logServerSelectionSucceeded(ctx, t, ss, server1)
}
return server1, nil
}
if mustLogServerSelection(t, logger.LevelDebug) {
logServerSelectionSucceeded(ctx, t, ss, server2)
}
return server2, nil
}
}
// pick2 returns 2 random server descriptions from the input slice of server descriptions,
// guaranteeing that the same element from the slice is not picked twice. The order of server
// descriptions in the input slice may be modified. If fewer than 2 server descriptions are
// provided, pick2 will panic.
func pick2(ds []description.Server) (description.Server, description.Server) {
// Select a random index from the input slice and keep the server description from that index.
idx := random.Intn(len(ds))
s1 := ds[idx]
// Swap the selected index to the end and reslice to remove it so we don't pick the same server
// description twice.
ds[idx], ds[len(ds)-1] = ds[len(ds)-1], ds[idx]
ds = ds[:len(ds)-1]
// Select another random index from the input slice and return both selected server descriptions.
return s1, ds[random.Intn(len(ds))]
}
// FindServer will attempt to find a server that fits the given server description.
// This method will return nil, nil if a matching server could not be found.
func (t *Topology) FindServer(selected description.Server) (*SelectedServer, error) {
if atomic.LoadInt64(&t.state) != topologyConnected {
return nil, ErrTopologyClosed
}
t.serversLock.Lock()
defer t.serversLock.Unlock()
server, ok := t.servers[selected.Addr]
if !ok {
return nil, nil
}
desc := t.Description()
return &SelectedServer{
Server: server,
Kind: desc.Kind,
}, nil
}
// selectServerFromSubscription loops until a topology description is available for server selection. It returns
// when the given context expires, server selection timeout is reached, or a description containing a selectable
// server is available.
func (t *Topology) selectServerFromSubscription(
ctx context.Context,
subscriptionCh <-chan description.Topology,
srvSelector description.ServerSelector,
) ([]description.Server, error) {
current := t.Description()
for {
select {
case <-ctx.Done():
return nil, ServerSelectionError{Wrapped: ctx.Err(), Desc: current}
case current = <-subscriptionCh:
default:
}
suitable, err := t.selectServerFromDescription(current, srvSelector)
if err != nil {
return nil, err
}
if len(suitable) > 0 {
return suitable, nil
}
t.RequestImmediateCheck()
}
}
// selectServerFromDescription process the given topology description and returns a slice of suitable servers.
func (t *Topology) selectServerFromDescription(
desc description.Topology,
srvSelector description.ServerSelector,
) ([]description.Server, error) {
// Unlike selectServerFromSubscription, this code path does not check ctx.Done or selectionState.timeoutChan because
// selecting a server from a description is not a blocking operation.
if desc.CompatibilityErr != nil {
return nil, desc.CompatibilityErr
}
// If the topology kind is LoadBalanced, the LB is the only server and it is always considered selectable. The
// selectors exported by the driver should already return the LB as a candidate, so this but this check ensures that
// the LB is always selectable even if a user of the low-level driver provides a custom selector.
if desc.Kind == description.TopologyKindLoadBalanced {
return desc.Servers, nil
}
allowedIndexes := make([]int, 0, len(desc.Servers))
for i, s := range desc.Servers {
if s.Kind != description.Unknown {
allowedIndexes = append(allowedIndexes, i)
}
}
allowed := make([]description.Server, len(allowedIndexes))
for i, idx := range allowedIndexes {
allowed[i] = desc.Servers[idx]
}
suitable, err := srvSelector.SelectServer(desc, allowed)
if err != nil {
return nil, ServerSelectionError{Wrapped: err, Desc: desc}
}
return suitable, nil
}
func (t *Topology) pollSRVRecords(hosts string) {
defer t.pollingwg.Done()
serverConfig := newServerConfig(t.cfg.ConnectTimeout, t.cfg.ServerOpts...)
heartbeatInterval := serverConfig.heartbeatInterval
pollTicker := time.NewTicker(t.rescanSRVInterval)
defer pollTicker.Stop()
t.pollHeartbeatTime.Store(false)
var doneOnce bool
defer func() {
// ¯\_(ツ)_/¯
if r := recover(); r != nil && !doneOnce {
<-t.pollingDone
}
}()
for {
select {
case <-pollTicker.C:
case <-t.pollingDone:
doneOnce = true
return
}
topoKind := t.Description().Kind
if !(topoKind == description.Unknown || topoKind == description.TopologyKindSharded) {
break
}
parsedHosts, err := t.dnsResolver.ParseHosts(hosts, t.cfg.SRVServiceName, false)
// DNS problem or no verified hosts returned
if err != nil || len(parsedHosts) == 0 {
if !t.pollHeartbeatTime.Load().(bool) {
pollTicker.Stop()
pollTicker = time.NewTicker(heartbeatInterval)
t.pollHeartbeatTime.Store(true)
}
continue
}
if t.pollHeartbeatTime.Load().(bool) {
pollTicker.Stop()
pollTicker = time.NewTicker(t.rescanSRVInterval)
t.pollHeartbeatTime.Store(false)
}
cont := t.processSRVResults(parsedHosts)
if !cont {
break
}
}
<-t.pollingDone
doneOnce = true
}
// equalTopologies compares two topology descriptions and returns true if they
// are equal.
func equalTopologies(topo1, topo2 description.Topology) bool {
if topo1.Kind != topo2.Kind {
return false
}
topoServers := make(map[string]*description.Server, len(topo1.Servers))
for i := range topo1.Servers {
topoServers[topo1.Servers[i].Addr.String()] = &topo1.Servers[i]
}
otherServers := make(map[string]*description.Server, len(topo2.Servers))
for i := range topo2.Servers {
otherServers[topo2.Servers[i].Addr.String()] = &topo2.Servers[i]
}
if len(topoServers) != len(otherServers) {
return false
}
for addr, server := range topoServers {
otherServer, ok := otherServers[addr]
if !ok {
return false
}
if !driverutil.EqualServers(*server, *otherServer) {
return false
}
}
return true
}
func (t *Topology) processSRVResults(parsedHosts []string) bool {
t.serversLock.Lock()
defer t.serversLock.Unlock()
if t.serversClosed {
return false
}
prev := t.fsm.Topology
diff := diffHostList(t.fsm.Topology, parsedHosts)
if len(diff.Added) == 0 && len(diff.Removed) == 0 {
return true
}
for _, r := range diff.Removed {
addr := address.Address(r).Canonicalize()
s, ok := t.servers[addr]
if !ok {
continue
}
go func() {
cancelCtx, cancel := context.WithCancel(context.Background())
cancel()
_ = s.Disconnect(cancelCtx)
}()
delete(t.servers, addr)
t.fsm.removeServerByAddr(addr)
t.publishServerClosedEvent(s.address)
}
// Now that we've removed all the hosts that disappeared from the SRV record, we need to add any
// new hosts added to the SRV record. If adding all of the new hosts would increase the number
// of servers past srvMaxHosts, shuffle the list of added hosts.
if t.cfg.SRVMaxHosts > 0 && len(t.servers)+len(diff.Added) > t.cfg.SRVMaxHosts {
random.Shuffle(len(diff.Added), func(i, j int) {
diff.Added[i], diff.Added[j] = diff.Added[j], diff.Added[i]
})
}
// Add all added hosts until the number of servers reaches srvMaxHosts.
for _, a := range diff.Added {
if t.cfg.SRVMaxHosts > 0 && len(t.servers) >= t.cfg.SRVMaxHosts {
break
}
addr := address.Address(a).Canonicalize()
_ = t.addServer(addr)
t.fsm.addServer(addr)
}
// store new description
newDesc := description.Topology{
Kind: t.fsm.Kind,
Servers: t.fsm.Servers,
SessionTimeoutMinutes: t.fsm.SessionTimeoutMinutes,
}
t.desc.Store(newDesc)
if !equalTopologies(prev, newDesc) {
t.publishTopologyDescriptionChangedEvent(prev, newDesc)
}
t.subLock.Lock()
for _, ch := range t.subscribers {
// We drain the description if there's one in the channel
select {
case <-ch:
default:
}
ch <- newDesc
}
t.subLock.Unlock()
return true
}
// apply updates the Topology and its underlying FSM based on the provided server description and returns the server
// description that should be stored.
func (t *Topology) apply(ctx context.Context, desc description.Server) description.Server {
t.serversLock.Lock()
defer t.serversLock.Unlock()
ind, ok := t.fsm.findServer(desc.Addr)
if t.serversClosed || !ok {
return desc
}
prev := t.fsm.Topology
oldDesc := t.fsm.Servers[ind]
if driverutil.CompareTopologyVersions(oldDesc.TopologyVersion, desc.TopologyVersion) > 0 {
return oldDesc
}
var current description.Topology
current, desc = t.fsm.apply(desc)
if !driverutil.EqualServers(oldDesc, desc) {
t.publishServerDescriptionChangedEvent(oldDesc, desc)
}
diff := diffTopology(prev, current)
for _, removed := range diff.Removed {
if s, ok := t.servers[removed.Addr]; ok {
go func() {
cancelCtx, cancel := context.WithCancel(ctx)
cancel()
_ = s.Disconnect(cancelCtx)
}()
delete(t.servers, removed.Addr)
t.publishServerClosedEvent(s.address)
}
}
for _, added := range diff.Added {
_ = t.addServer(added.Addr)
}
t.desc.Store(current)
if !equalTopologies(prev, current) {
t.publishTopologyDescriptionChangedEvent(prev, current)
}
t.subLock.Lock()
for _, ch := range t.subscribers {
// We drain the description if there's one in the channel
select {
case <-ch:
default:
}
ch <- current
}
t.subLock.Unlock()
return desc
}
func (t *Topology) addServer(addr address.Address) error {
if _, ok := t.servers[addr]; ok {
return nil
}
svr, err := ConnectServer(addr, t.updateCallback, t.id, t.cfg.ConnectTimeout, t.cfg.ServerOpts...)
if err != nil {
return err
}
t.servers[addr] = svr
return nil
}
// String implements the Stringer interface
func (t *Topology) String() string {
desc := t.Description()
serversStr := ""
t.serversLock.Lock()
defer t.serversLock.Unlock()
for _, s := range t.servers {
serversStr += "{ " + s.String() + " }, "
}
return fmt.Sprintf("Type: %s, Servers: [%s]", desc.Kind, serversStr)