summaryrefslogtreecommitdiff
path: root/jstests/replsets/reconfig_during_election.js
blob: b0ff620de461fe5a4a2e3a38d0fcc58df3117863 (plain)
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
/**
 * SERVER-37255: replSetReconfig runs on a node that is concurrently processing an election win and
 * does not result in an invariant.
 */

(function() {
"use strict";
load("jstests/libs/fail_point_util.js");
load("jstests/replsets/libs/election_handoff.js");

const rst = ReplSetTest({nodes: 2});
const nodes = rst.startSet();
const config = rst.getReplSetConfig();
// Prevent elections and set heartbeat timeout >> electionHangsBeforeUpdateMemberState.
config.settings = {
    electionTimeoutMillis: 12 * 60 * 60 * 1000,
    heartbeatTimeoutSecs: 60 * 1000
};
rst.initiate(config);

const incumbent = rst.getPrimary();
const candidate = rst.getSecondary();

jsTestLog("Step down");

const failPoint = configureFailPoint(
    candidate, "electionHangsBeforeUpdateMemberState", {waitForMillis: 10 * 1000});

// The incumbent sends replSetStepUp to the candidate for election handoff.
assert.commandWorked(incumbent.adminCommand({
    replSetStepDown: ElectionHandoffTest.stepDownPeriodSecs,
    secondaryCatchUpPeriodSecs: ElectionHandoffTest.stepDownPeriodSecs / 2
}));

jsTestLog("Wait for candidate to win the election");

failPoint.wait();

jsTestLog("Try to interrupt it with a reconfig");

config.members[nodes.indexOf(candidate)].priority = 2;
config.version++;
// While the candidate is stepping up, it it possible for the RstlKillOpThread to kill this reconfig
// command before it succeeds. Failing due to interruption on stepup or the automatic reconfig on
// stepup is acceptable here because we are testing that the reconfig command does not cause the
// server to invariant.
assert.commandWorkedOrFailedWithCode(
    candidate.adminCommand({replSetReconfig: config, force: true}),
    [ErrorCodes.InterruptedDueToReplStateChange, ErrorCodes.ConfigurationInProgress]);

failPoint.off();

rst.stopSet();
})();