summaryrefslogtreecommitdiff
path: root/jstests/concurrency/fsm_workloads/touch_index.js
blob: b4e478350739516934e5170b9248e8994887e367 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
'use strict';

/**
 * touch_index.js
 *
 * Bulk inserts documents in batches of 100, uses touch on "index" but not "data",
 * and queries to verify the number of documents inserted by the thread.
 */

load('jstests/concurrency/fsm_libs/extend_workload.js');  // for extendWorkload
load('jstests/concurrency/fsm_workloads/touch_base.js');  // for $config

var $config = extendWorkload($config, function($config, $super) {
    $config.data.generateTouchCmdObj = function generateTouchCmdObj(collName) {
        return {touch: collName, data: false, index: true};
    };

    return $config;
});