diff options
author | Henrik Edin <henrik.edin@mongodb.com> | 2019-03-26 10:27:48 -0400 |
---|---|---|
committer | Henrik Edin <henrik.edin@mongodb.com> | 2019-04-05 10:16:25 -0400 |
commit | 2ee7dcb2bcb4372a49b8584c43bb65caea6212c8 (patch) | |
tree | ad51e1b759f865f0706e14c208c044e2dfa653e7 /jstests/concurrency | |
parent | 7a6a21915dcde1f232e7bbde5aa3738be69befd4 (diff) | |
download | mongo-2ee7dcb2bcb4372a49b8584c43bb65caea6212c8.tar.gz |
SERVER-32709 Improve performance with the mobile storage engine.
SQLite is configured with synchronous=NORMAL for all sessions.
Reduced temporary memory allocations when constructing SQL statements.
Implemented waitUntilDurable when this storage engine is used in mongod only.
Diffstat (limited to 'jstests/concurrency')
-rw-r--r-- | jstests/concurrency/fsm_workloads/reindex.js | 2 | ||||
-rw-r--r-- | jstests/concurrency/fsm_workloads/reindex_background.js | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/jstests/concurrency/fsm_workloads/reindex.js b/jstests/concurrency/fsm_workloads/reindex.js index ff9d0604ed5..8ca7f8223ae 100644 --- a/jstests/concurrency/fsm_workloads/reindex.js +++ b/jstests/concurrency/fsm_workloads/reindex.js @@ -5,8 +5,6 @@ * * Bulk inserts 1000 documents and builds indexes. Then alternates between reindexing and querying * against the collection. Operates on a separate collection for each thread. - * - * @tags: [SERVER-32709] */ var $config = (function() { diff --git a/jstests/concurrency/fsm_workloads/reindex_background.js b/jstests/concurrency/fsm_workloads/reindex_background.js index 79aad331087..9e781f4a4ef 100644 --- a/jstests/concurrency/fsm_workloads/reindex_background.js +++ b/jstests/concurrency/fsm_workloads/reindex_background.js @@ -8,7 +8,7 @@ * that because indexes are initially built in the background, reindexing is also done in the * background. * - * @tags: [SERVER-32709, creates_background_indexes] + * @tags: [creates_background_indexes] */ load('jstests/concurrency/fsm_libs/extend_workload.js'); // for extendWorkload |