Files
mongo/jstests/replsets/apply_ops_concurrent_non_atomic_same_db.js
Benety Goh bca3f70566 SERVER-30554 relax locking mode in applyOps when applying CRUD-only ops non-atomically
This allows concurrent applyOps commands to update the same collection on storage
engines that support document level concurrency.
2017-08-09 20:20:21 -04:00

12 lines
269 B
JavaScript

(function() {
'use strict';
load('jstests/replsets/libs/apply_ops_concurrent_non_atomic.js');
new ApplyOpsConcurrentNonAtomicTest({
ns1: 'test.coll1',
ns2: 'test.coll2',
requiresDocumentLevelConcurrency: false,
}).run();
}());