summaryrefslogtreecommitdiff
path: root/jstests/replsets/initial_sync_update_missing_doc_with_prepare.js
blob: 750c4350396cf65e506955ac7995b4bc80a9b0a8 (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/**
 * Initial sync runs in several phases - the first 3 are as follows:
 * 1) fetches the last oplog entry (op_start1) on the source;
 * 2) copies all non-local databases from the source; and
 * 3) fetches and applies operations from the source after op_start1.
 *
 * This test updates and deletes a document on the source between phases 1 and 2 in a prepared
 * transaction. The secondary will fail to apply the update operation in phase 3 but initial sync
 * completes nevertheless.
 *
 * @tags: [
 *   uses_prepare_transaction,
 *   uses_transactions,
 * ]
 */

(function() {
load("jstests/core/txns/libs/prepare_helpers.js");
load("jstests/replsets/libs/initial_sync_update_missing_doc.js");

function doTest(doTransactionWork, numDocuments) {
    const replSet = new ReplSetTest({nodes: 1});

    replSet.startSet();
    replSet.initiate();
    const primary = replSet.getPrimary();
    const dbName = 'test';
    const collectionName = jsTestName();
    let coll = primary.getDB(dbName).getCollection(collectionName);
    assert.commandWorked(coll.insert({_id: 0, x: 1}));
    assert.commandWorked(coll.insert({_id: 1, x: 1}));

    // Add a secondary node with priority: 0 and votes: 0 so that we prevent elections while
    // it is syncing from the primary.
    const secondaryConfig = {rsConfig: {votes: 0, priority: 0}};
    const secondary = reInitiateSetWithSecondary(replSet, secondaryConfig);

    const session = primary.startSession();
    const sessionDB = session.getDatabase(dbName);
    const sessionColl = sessionDB.getCollection(collectionName);

    session.startTransaction();
    doTransactionWork(sessionColl, {_id: 0});
    const prepareTimestamp = PrepareHelpers.prepareTransaction(session);
    assert.commandWorked(PrepareHelpers.commitTransaction(session, prepareTimestamp));

    // This transaction is eventually aborted, so this document should exist on the secondary
    // after initial sync.
    session.startTransaction();
    doTransactionWork(sessionColl, {_id: 1});
    PrepareHelpers.prepareTransaction(session);
    assert.commandWorked(session.abortTransaction_forTesting());

    turnOffHangBeforeCopyingDatabasesFailPoint(secondary);

    // Since we aborted the second transaction, we expect this collection to still exist after
    // initial sync.
    finishAndValidate(replSet, collectionName, numDocuments);

    // Make sure the secondary has the correct documents after syncing from the primary. The
    // second document was deleted in the prepared transaction that was aborted. Therefore, it
    // should have been properly replication.
    coll = secondary.getDB(dbName).getCollection(collectionName);
    assert.docEq(null, coll.findOne({_id: 0}), 'document on secondary matches primary');
    assert.docEq({_id: 1, x: 1}, coll.findOne({_id: 1}), 'document on secondary matches primary');

    replSet.stopSet();
}

jsTestLog("Testing with prepared transaction");
// Passing in a function to update and remove document on primary in a prepared transaction
// between phrase 1 and 2. Once the secondary receives the commit for the transaction, the
// secondary should apply each operation separately (one update, and one delete) during initial
// sync.
doTest(updateRemove, 1 /* numDocuments after initial sync */);

jsTestLog("Testing with large prepared transaction");
// Passing in a function to insert, update and remove large documents on primary in a large
// prepared transaction. Once the secondary receives the commit for the transaction, the
// secondary should apply each operation separately (one insert, one update, and one delete)
// during initial sync.
doTest(insertUpdateRemoveLarge, 2 /* numDocuments after initial sync */);
})();