summaryrefslogtreecommitdiff
path: root/jstests/replsets/tenant_migration_recipient_sync_source_restart_donor_secondary.js
blob: c4edbec28aa9398047149dd964c7ffb05fbfe3e5 (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
55
56
57
58
59
60
/**
 * Tests that a migration will continuously retry sync source selection when there are no available
 * donor hosts. Also checks that a donor host is considered an uneligible sync source when it has a
 * majority OpTime earlier than the recipient's stored 'startApplyingDonorOpTime'.
 *
 * Tests that if a donor host becomes available, the recipient will successfully choose it as a
 * sync source and resume the migration.
 *
 * @tags: [requires_majority_read_concern, requires_fcv_49, incompatible_with_windows_tls,
 * incompatible_with_eft, incompatible_with_macos, requires_persistence]
 */

(function() {
"use strict";

load("jstests/replsets/libs/tenant_migration_recipient_sync_source.js");

// After this setUp() call, we should have a migration with 'secondary' read preference. The
// recipient should be continuously retrying sync source selection, unable to choose
// 'delayedSecondary' because it is too stale and 'donorSecondary' because it is down.
const {
    tenantMigrationTest,
    migrationOpts,
    donorSecondary,
    delayedSecondary,
    hangAfterCreatingConnections
} = setUpMigrationSyncSourceTest();

if (!tenantMigrationTest) {
    // Feature flag was not enabled.
    return;
}

const donorRst = tenantMigrationTest.getDonorRst();

jsTestLog("Restarting 'donorSecondary'");
donorRst.start(donorSecondary, null /* options */, true /* restart */);

// The recipient should eventually be able to connect to the donor secondary, after the node reaches
// 'secondary' state.
hangAfterCreatingConnections.wait();

const recipientPrimary = tenantMigrationTest.getRecipientPrimary();
const res = recipientPrimary.adminCommand({currentOp: true, desc: "tenant recipient migration"});
const currOp = res.inprog[0];
// 'donorSecondary' should always be the chosen sync source, since read preference is 'secondary'
// and 'delayedSecondary' cannot be chosen because it is too stale.
assert.eq(donorSecondary.host,
          currOp.donorSyncSource,
          `the recipient should only be able to choose 'donorSecondary' as sync source`);

hangAfterCreatingConnections.off();
restartServerReplication(delayedSecondary);

assert.commandWorked(tenantMigrationTest.waitForMigrationToComplete(migrationOpts));
assert.commandWorked(tenantMigrationTest.forgetMigration(migrationOpts.migrationIdString));

donorRst.stopSet();
tenantMigrationTest.stop();
})();