Includes workloads for:
aggregation
mapReduce and group workloads
creating and dropping roles and users
update(...)
basic workloads for capped collections
findAndModify
remove(...)
dropping db/collection, renaming collections, and for server status
Updates blacklists to fsm_*js runners to work around MongoDB restrictions or known bugs.
Closes #902
Signed-off-by: Benety Goh <benety@mongodb.com>
14 lines
460 B
JavaScript
14 lines
460 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* update_replace_noindex.js
|
|
*
|
|
* Executes the update_replace.js workload after dropping all non-_id indexes
|
|
* on the collection.
|
|
*/
|
|
load('jstests/concurrency/fsm_libs/extend_workload.js'); // for extendWorkload
|
|
load('jstests/concurrency/fsm_workloads/update_replace.js'); // for $config
|
|
load('jstests/concurrency/fsm_workload_modifiers/drop_all_indexes.js'); // for dropAllIndexes
|
|
|
|
var $config = extendWorkload($config, dropAllIndexes);
|