summaryrefslogtreecommitdiff
path: root/jstests/concurrency/fsm_workloads/internal_transactions_kill_sessions_nonretryable.js
blob: cf8fc1c427993e57cfc98019e79fa711920d85e3 (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
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
117
'use strict';

/**
 * Performs CRUD commands using non-retryable internal transactions while simultaneously killing
 * sessions.
 *
 * @tags: [
 *  requires_fcv_60,
 *  uses_transactions,
 * ]
 */

load('jstests/concurrency/fsm_libs/extend_workload.js');
load('jstests/concurrency/fsm_workloads/internal_transactions_kill_sessions_retryable.js');
load('jstests/libs/fail_point_util.js');

var $config = extendWorkload($config, function($config, $super) {
    $config.data.generateRandomExecutionContext = function generateRandomExecutionContext() {
        if (this.shouldUseCausalConsistency) {
            // Exclude kNoClientSession since a casually consistent session is required.
            return 2;
        }
        return this.generateRandomInt(1, 2);
    };

    $config.data.runInternalTransaction = function runInternalTransaction(
        db, collection, executionCtxType, writeCmdObj, checkResponseFunc, checkDocsFunc) {
        try {
            $super.data.runInternalTransaction.apply(this, arguments);
        } catch (e) {
            if (e.code == ErrorCodes.Interrupted) {
                // killSession commands generate interrupted errors, so this is not a reason to
                // abort the workload. Continue to the next iteration.
                return;
            }
            throw e;
        }
    };

    $config.setup = function setup(db, collName, cluster) {
        $super.setup.apply(this, arguments);
        if (cluster.isSharded()) {
            cluster.executeOnMongosNodes((db) => {
                configureFailPoint(db, "skipTransactionApiRetryCheckInHandleError");
            });
        } else if (cluster.isReplication()) {
            configureFailPoint(db, "skipTransactionApiRetryCheckInHandleError");
        }
    };

    // Sessions may be killed after transactions are already in the prepared state, so local
    // document state may not accurately reflect the document's state in the database.
    $config.data.expectDirtyDocs["skipCheckDocs"] = true;

    $config.teardown = function teardown(db, collName, cluster) {
        if (cluster.isSharded()) {
            cluster.executeOnMongosNodes((db) => {
                configureFailPoint(db, "skipTransactionApiRetryCheckInHandleError", {}, "off");
            });
        } else if (cluster.isReplication()) {
            configureFailPoint(db, "skipTransactionApiRetryCheckInHandleError");
        }
    };

    $config.transitions = {
        init: {
            killSession: 0.2,
            internalTransactionForInsert: 0.2,
            internalTransactionForUpdate: 0.2,
            internalTransactionForDelete: 0.2,
            internalTransactionForFindAndModify: 0.2,
        },
        killSession: {
            internalTransactionForInsert: 0.25,
            internalTransactionForUpdate: 0.25,
            internalTransactionForDelete: 0.25,
            internalTransactionForFindAndModify: 0.25,
        },
        internalTransactionForInsert: {
            killSession: 0.4,
            internalTransactionForInsert: 0.15,
            internalTransactionForUpdate: 0.15,
            internalTransactionForDelete: 0.15,
            internalTransactionForFindAndModify: 0.15,
        },
        internalTransactionForUpdate: {
            killSession: 0.4,
            internalTransactionForInsert: 0.15,
            internalTransactionForUpdate: 0.15,
            internalTransactionForDelete: 0.15,
            internalTransactionForFindAndModify: 0.15,
        },
        internalTransactionForDelete: {
            killSession: 0.4,
            internalTransactionForInsert: 0.15,
            internalTransactionForUpdate: 0.15,
            internalTransactionForDelete: 0.15,
            internalTransactionForFindAndModify: 0.15,
        },
        internalTransactionForFindAndModify: {
            killSession: 0.4,
            internalTransactionForInsert: 0.15,
            internalTransactionForUpdate: 0.15,
            internalTransactionForDelete: 0.15,
            internalTransactionForFindAndModify: 0.15,
        },
        verifyDocuments: {
            killSession: 0.4,
            internalTransactionForInsert: 0.15,
            internalTransactionForUpdate: 0.15,
            internalTransactionForDelete: 0.15,
            internalTransactionForFindAndModify: 0.15,
        }
    };

    return $config;
});