79 lines
2.1 KiB
YAML
79 lines
2.1 KiB
YAML
description: "setVersion version that is equal is treated the same as greater than if there is no electionId"
|
|
|
|
uri: "mongodb://a/?replicaSet=rs"
|
|
|
|
phases: [
|
|
|
|
# Primary A is discovered and tells us about B.
|
|
{
|
|
responses: [
|
|
["a:27017", {
|
|
ok: 1,
|
|
helloOk: true,
|
|
isWritablePrimary: true,
|
|
hosts: ["a:27017", "b:27017"],
|
|
setName: "rs",
|
|
setVersion: 1,
|
|
minWireVersion: 0,
|
|
maxWireVersion: 17
|
|
}]
|
|
],
|
|
|
|
outcome: {
|
|
servers: {
|
|
"a:27017": {
|
|
type: "RSPrimary",
|
|
setName: "rs",
|
|
setVersion: 1,
|
|
electionId:
|
|
},
|
|
"b:27017": {
|
|
type: "Unknown",
|
|
setName: ,
|
|
electionId:
|
|
}
|
|
},
|
|
topologyType: "ReplicaSetWithPrimary",
|
|
logicalSessionTimeoutMinutes: null,
|
|
setName: "rs",
|
|
maxSetVersion: 1,
|
|
}
|
|
},
|
|
|
|
# B is elected, its setVersion is older so it is stale
|
|
{
|
|
responses: [
|
|
["b:27017", {
|
|
ok: 1,
|
|
helloOk: true,
|
|
isWritablePrimary: true,
|
|
hosts: ["a:27017", "b:27017"],
|
|
setName: "rs",
|
|
setVersion: 1,
|
|
minWireVersion: 0,
|
|
maxWireVersion: 17
|
|
}]
|
|
],
|
|
|
|
outcome: {
|
|
servers: {
|
|
"a:27017": {
|
|
type: "Unknown",
|
|
setName: ,
|
|
electionId:
|
|
},
|
|
"b:27017": {
|
|
type: "RSPrimary",
|
|
setName: "rs",
|
|
setVersion: 1,
|
|
electionId:
|
|
}
|
|
},
|
|
topologyType: "ReplicaSetWithPrimary",
|
|
logicalSessionTimeoutMinutes: null,
|
|
setName: "rs",
|
|
maxSetVersion: 1, # Max is still 1, there wasn't an actual larger setVersion seen
|
|
}
|
|
}
|
|
]
|