-
Notifications
You must be signed in to change notification settings - Fork 1.8k
feat: directConnection adds unify behavior for replica set discovery #2349
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
c80b42f
ae14f1c
0a50a18
29bb331
67a5dda
a67f83c
ad68403
e14501c
4b5dedc
c1ee288
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -163,7 +163,7 @@ class TopologyDescription { | |
| } | ||
|
|
||
| if (topologyType === TopologyType.Unknown) { | ||
| if (serverType === ServerType.Standalone) { | ||
| if (serverType === ServerType.Standalone && this.servers.size !== 1) { | ||
| serverDescriptions.delete(address); | ||
| } else { | ||
| topologyType = topologyTypeForServerType(serverType); | ||
|
|
@@ -277,9 +277,19 @@ class TopologyDescription { | |
| } | ||
|
|
||
| function topologyTypeForServerType(serverType) { | ||
| if (serverType === ServerType.Mongos) return TopologyType.Sharded; | ||
| if (serverType === ServerType.RSPrimary) return TopologyType.ReplicaSetWithPrimary; | ||
| return TopologyType.ReplicaSetNoPrimary; | ||
| switch (serverType) { | ||
| case ServerType.Standalone: | ||
| return TopologyType.Single; | ||
| case ServerType.Mongos: | ||
| return TopologyType.Sharded; | ||
| case ServerType.RSPrimary: | ||
| return TopologyType.ReplicaSetWithPrimary; | ||
| case ServerType.RSOther: | ||
| case ServerType.RSSecondary: | ||
| return TopologyType.ReplicaSetNoPrimary; | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It didn't make sense to me to have the "default" be
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: I don't find that using a
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I generally don't prefer switch syntax, but i think @emadum's recommendation makes sense here it does help restrict what this function can do. It makes it more obvious that this function takes a
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. default |
||
| default: | ||
| return TopologyType.Unknown; | ||
| } | ||
| } | ||
|
|
||
| function compareObjectId(oid1, oid2) { | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| { | ||
| "uri": "mongodb+srv://test3.test.build.10gen.cc/?directConnection=false", | ||
| "seeds": [ | ||
| "localhost.test.build.10gen.cc:27017" | ||
| ], | ||
| "hosts": [ | ||
| "localhost:27017", | ||
| "localhost:27018", | ||
| "localhost:27019" | ||
| ], | ||
| "options": { | ||
| "ssl": true | ||
| } | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| uri: "mongodb+srv://test3.test.build.10gen.cc/?directConnection=false" | ||
| seeds: | ||
| - localhost.test.build.10gen.cc:27017 | ||
| hosts: | ||
| - localhost:27017 | ||
| - localhost:27018 | ||
| - localhost:27019 | ||
| options: | ||
| ssl: true |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| { | ||
| "uri": "mongodb+srv://test3.test.build.10gen.cc/?directConnection=true", | ||
| "seeds": [], | ||
| "hosts": [], | ||
| "error": true, | ||
| "comment": "Should fail because directConnection=true is incompatible with SRV URIs." | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| uri: "mongodb+srv://test3.test.build.10gen.cc/?directConnection=true" | ||
| seeds: [] | ||
| hosts: [] | ||
| error: true | ||
| comment: Should fail because directConnection=true is incompatible with SRV URIs. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| { | ||
| "description": "Discover arbiters with replicaSet URI option", | ||
| "uri": "mongodb://a/?replicaSet=rs", | ||
| "phases": [ | ||
| { | ||
| "responses": [ | ||
| [ | ||
| "a:27017", | ||
| { | ||
| "ok": 1, | ||
| "ismaster": true, | ||
| "hosts": [ | ||
| "a:27017" | ||
| ], | ||
| "arbiters": [ | ||
| "b:27017" | ||
| ], | ||
| "setName": "rs", | ||
| "minWireVersion": 0, | ||
| "maxWireVersion": 6 | ||
| } | ||
| ] | ||
| ], | ||
| "outcome": { | ||
| "servers": { | ||
| "a:27017": { | ||
| "type": "RSPrimary", | ||
| "setName": "rs" | ||
| }, | ||
| "b:27017": { | ||
| "type": "Unknown", | ||
| "setName": null | ||
| } | ||
| }, | ||
| "topologyType": "ReplicaSetWithPrimary", | ||
| "logicalSessionTimeoutMinutes": null, | ||
| "setName": "rs" | ||
| } | ||
| } | ||
| ] | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| description: "Discover arbiters with replicaSet URI option" | ||
|
|
||
| uri: "mongodb://a/?replicaSet=rs" | ||
|
|
||
| phases: [ | ||
|
|
||
| { | ||
| responses: [ | ||
|
|
||
| ["a:27017", { | ||
|
|
||
| ok: 1, | ||
| ismaster: true, | ||
| hosts: ["a:27017"], | ||
| arbiters: ["b:27017"], | ||
| setName: "rs", | ||
| minWireVersion: 0, | ||
| maxWireVersion: 6 | ||
| }] | ||
| ], | ||
|
|
||
| outcome: { | ||
|
|
||
| servers: { | ||
|
|
||
| "a:27017": { | ||
|
|
||
| type: "RSPrimary", | ||
| setName: "rs" | ||
| }, | ||
|
|
||
| "b:27017": { | ||
|
|
||
| type: "Unknown", | ||
| setName: | ||
| } | ||
| }, | ||
| topologyType: "ReplicaSetWithPrimary", | ||
| logicalSessionTimeoutMinutes: null, | ||
| setName: "rs" | ||
| } | ||
| } | ||
| ] |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| { | ||
| "description": "Discover ghost with directConnection URI option", | ||
| "uri": "mongodb://b/?directConnection=false", | ||
| "phases": [ | ||
| { | ||
| "responses": [ | ||
| [ | ||
| "b:27017", | ||
| { | ||
| "ok": 1, | ||
| "ismaster": false, | ||
| "isreplicaset": true, | ||
| "minWireVersion": 0, | ||
| "maxWireVersion": 6 | ||
| } | ||
| ] | ||
| ], | ||
| "outcome": { | ||
| "servers": { | ||
| "b:27017": { | ||
| "type": "RSGhost", | ||
| "setName": null | ||
| } | ||
| }, | ||
| "topologyType": "Unknown", | ||
| "logicalSessionTimeoutMinutes": null, | ||
| "setName": null | ||
| } | ||
| } | ||
| ] | ||
| } |
Uh oh!
There was an error while loading. Please reload this page.