summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRandolph Tan <randolph@10gen.com>2017-11-10 13:11:20 -0500
committerRandolph Tan <randolph@10gen.com>2017-11-13 13:07:15 -0500
commitc5733dba9b92486e9e72e14942ec7bcdc15549c6 (patch)
tree59abb5a79b34f38ff5b8e2ddff41cf6988299112
parent9fbb130337619500dfe153bf3fc856d1852cc0ce (diff)
downloadmongo-c5733dba9b92486e9e72e14942ec7bcdc15549c6.tar.gz
SERVER-31914 Disable batch_write_command_update.js in retryable_writes_jscore_passthrough suite
-rw-r--r--etc/evergreen.yml2
-rw-r--r--jstests/core/batch_write_command_update.js5
2 files changed, 5 insertions, 2 deletions
diff --git a/etc/evergreen.yml b/etc/evergreen.yml
index c49e0c9bafd..a4a5a10f98f 100644
--- a/etc/evergreen.yml
+++ b/etc/evergreen.yml
@@ -4166,7 +4166,7 @@ tasks:
- func: "do setup"
- func: "run tests"
vars:
- resmoke_args: --suites=retryable_writes_jscore_passthrough --storageEngine=mmapv1
+ resmoke_args: --suites=retryable_writes_jscore_passthrough --storageEngine=mmapv1 --excludeWithAnyTags=skip_in_retryable_writes_mmapv1_passthrough
run_multiple_jobs: true
- <<: *task_template
diff --git a/jstests/core/batch_write_command_update.js b/jstests/core/batch_write_command_update.js
index 755edbf5391..7c9bf29fae5 100644
--- a/jstests/core/batch_write_command_update.js
+++ b/jstests/core/batch_write_command_update.js
@@ -1,7 +1,10 @@
// Cannot implicitly shard accessed collections because of following errmsg: A single
// update/delete on a sharded collection must contain an exact match on _id or contain the shard
// key.
-// @tags: [assumes_unsharded_collection]
+// MMap doesn't implement RecordStore::oplogStartHack so it uses the OplogStart stage instead when
+// performing ts queries on the oplog during retry. This is considerable slower since it will
+// have to perform table scans within an extent.
+// @tags: [assumes_unsharded_collection, skip_in_retryable_writes_mmapv1_passthrough]
//
// Ensures that mongod respects the batch write protocols for updates