summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaolo Polato <paolo.polato@mongodb.com>2021-07-07 10:28:16 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-07-16 08:27:29 +0000
commitf12d07945bd82ff9b6726aa74b84ea4e94b06171 (patch)
tree764a216d3c9431d7f8726e4115af915a1ab23650
parent669cbdd833c9fa18b543a61b615834dca69b2b8f (diff)
downloadmongo-r4.0.26.tar.gz
SERVER-58191 Allow delete_during_migrate test to tolerate chunk migration timeouts in slow variants.r4.0.26-rc0r4.0.26
(cherry picked from commit a8cf4f32d5b53291add8b19d6f26ccac82c50dde)
-rw-r--r--jstests/sharding/delete_during_migrate.js15
1 files changed, 13 insertions, 2 deletions
diff --git a/jstests/sharding/delete_during_migrate.js b/jstests/sharding/delete_during_migrate.js
index 04c3075b1f1..35882bf376c 100644
--- a/jstests/sharding/delete_during_migrate.js
+++ b/jstests/sharding/delete_during_migrate.js
@@ -10,6 +10,10 @@
(function() {
'use strict';
+ const isCodeCoverageEnabled = buildInfo().buildEnvironment.ccflags.includes('-ftest-coverage');
+ const isSanitizerEnabled = buildInfo().buildEnvironment.ccflags.includes('-fsanitize');
+ const slowTestVariant = isCodeCoverageEnabled || isSanitizerEnabled;
+
var st = new ShardingTest({shards: 2, mongos: 1});
var dbname = "test";
@@ -36,8 +40,15 @@
var join = startParallelShell("db." + coll + ".remove({});", st.s0.port);
// migrate while deletions are happening
- assert.commandWorked(st.s0.adminCommand(
- {moveChunk: ns, find: {a: 1}, to: st.getOther(st.getPrimaryShard(dbname)).name}));
+ try {
+ assert.commandWorked(st.s0.adminCommand(
+ {moveChunk: ns, find: {a: 1}, to: st.getOther(st.getPrimaryShard(dbname)).name}));
+ } catch (e) {
+ const expectedFailureMessage = "startCommit timed out waiting for the catch up completion.";
+ if (!slowTestVariant || !e.message.match(expectedFailureMessage)) {
+ throw e;
+ }
+ }
join();