-
Notifications
You must be signed in to change notification settings - Fork 5.6k
/
Copy pathreplsettest_api_usage_examples.js
116 lines (93 loc) · 4.96 KB
/
replsettest_api_usage_examples.js
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
import {ReplSetTest} from "jstests/libs/replsettest.js";
function nodeWithHighestPriorityStepsUp() {
// Test replica set with different priorities.
const replTest = new ReplSetTest({
name: "NodesWithDifferentPriorities",
nodes: [{rsConfig: {priority: 5}}, {}, {rsConfig: {priority: 0}}]
});
replTest.startSet();
replTest.initiate(null, null, {initiateWithDefaultElectionTimeout: true});
// Make sure that node[0] is the primary because it has the highest priority.
replTest.waitForState(replTest.nodes[0], ReplSetTest.State.PRIMARY);
// Stop the primary and wait for another node to become primary. Node 1 will become primary
// because the third node has priority 0 so it cannot become primary and cannot trigger
// elections.
const primary = replTest.getPrimary();
replTest.stop(primary, undefined /* signal */, {} /* options */, {forRestart: true});
replTest.waitForState(replTest.nodes[1], ReplSetTest.State.PRIMARY);
// Start the old primary again and make sure it becomes primary again due to priority takeover.
// Calling `stop()` and `start()` with `restart=true` will skip clearing the data directory
// before the server starts.
replTest.start(primary, {} /* options */, true /* restart */);
replTest.waitForState(primary, ReplSetTest.State.PRIMARY);
// Shut down the set and finish the test.
replTest.stopSet();
}
function manuallyStepUpNodeWhenHighElectionTimeoutSet() {
const replTest = new ReplSetTest({name: "highElectionTimeoutAndStepUp", nodes: 3});
replTest.startSet();
// Call `initiate` without `initiateWithDefaultElectionTimeout: true` when not testing election
// behavior. This initiates the replica set with high election timeout, which prevents unplanned
// elections from happening during the test, so we can maintain the same primary throughout the
// test.
replTest.initiate();
// Test some behavior.
const primary = replTest.getPrimary();
const primaryDB = primary.getDB("db");
assert.commandWorked(primaryDB["collection"].insertMany(
[...Array(100).keys()].map(x => ({a: x.toString()})), {ordered: false}));
// Call `stepUp()` to make another node the primary. This waits for all nodes to reach the same
// optime before sending the replSetStepUp command to the node, so that the stepup command will
// not fail because the candidate is too stale. It also waits for the new primary to become a
// writable primary.
const newPrimary = replTest.getSecondary();
replTest.stepUp(newPrimary);
replTest.waitForState(newPrimary, ReplSetTest.State.PRIMARY);
// Shut down the set and finish the test.
replTest.stopSet();
}
function frozenNodesDontTriggerElections() {
const replTest = new ReplSetTest({
name: "freezeNode",
nodes: [{rsConfig: {priority: 5}}, {rsConfig: {priority: 3}}, {rsConfig: {priority: 0}}]
});
replTest.startSet();
replTest.initiate(null, null, {initiateWithDefaultElectionTimeout: true});
// Step down the primary and freeze it for 30 seconds. Freezing a node prevents it from
// attempting to become primary.
const primary = replTest.getPrimary();
replTest.awaitReplication();
assert.commandWorked(primary.getDB("admin").runCommand({replSetStepDown: 10, force: true}));
assert.commandWorked(primary.getDB("admin").runCommand({replSetFreeze: 30}));
sleep(1000);
// Node 1 will then step up to become a primary after the election timeout because node 0 is
// frozen and node 2 has priority 0 so neither of them can start elections.
replTest.waitForState(replTest.nodes[1], ReplSetTest.State.PRIMARY);
// Unfreeze the primary before 30 seconds are up. The old primary will step up again now that it
// can start elections again.
assert.commandWorked(primary.getDB("admin").runCommand({replSetFreeze: 0}));
replTest.waitForState(primary, ReplSetTest.State.PRIMARY);
replTest.stopSet();
}
function dumpOplogEntries() {
const replTest = new ReplSetTest({name: 'dumpOplogEntries', nodes: 3});
replTest.startSet();
// Call `initiate` without `initiateWithDefaultElectionTimeout: true` when not testing election
// behavior. This initiates the replica set with high election timeout, which prevents unplanned
// elections from happening during the test, so we can maintain the same primary throughout the
// test.
replTest.initiate();
// Insert some documents.
const primary = replTest.getPrimary();
const primaryDB = primary.getDB("db");
assert.commandWorked(primaryDB["collection"].insertMany(
[...Array(5).keys()].map(x => ({a: x.toString()})), {ordered: false}));
// Use `dumpOplog()` to print out oplog entries to help with debugging.
replTest.dumpOplog(primary);
// Shut down the set and finish the test.
replTest.stopSet();
}
nodeWithHighestPriorityStepsUp();
manuallyStepUpNodeWhenHighElectionTimeoutSet();
frozenNodesDontTriggerElections();
dumpOplogEntries();