Files
mongo/jstests/replsets/apply_ops_concurrent_non_atomic_same_collection.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
266 B
JavaScript

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