diff options
| -rw-r--r-- | buildscripts/resmokeconfig/suites/multi_stmt_txn_jscore_passthrough_with_migration.yml | 5 | ||||
| -rw-r--r-- | buildscripts/resmokeconfig/suites/sharding_jscore_passthrough_with_balancer.yml | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/buildscripts/resmokeconfig/suites/multi_stmt_txn_jscore_passthrough_with_migration.yml b/buildscripts/resmokeconfig/suites/multi_stmt_txn_jscore_passthrough_with_migration.yml index 4b6f287d1dc..e24f6c5bd90 100644 --- a/buildscripts/resmokeconfig/suites/multi_stmt_txn_jscore_passthrough_with_migration.yml +++ b/buildscripts/resmokeconfig/suites/multi_stmt_txn_jscore_passthrough_with_migration.yml @@ -356,6 +356,11 @@ executor: writePeriodicNoops: true coordinateCommitReturnImmediatelyAfterPersistingDecision: true skipDroppingHashedShardKeyIndex: true + # Increment the query yield period as a best effort to avoid getting a QueryPlanKilled error + # when a query and a moveCollection run concurrently (more info on SERVER-88275) + # TODO (SERVER-88275) Remove both parameters once this bug is being addressed + internalQueryExecYieldPeriodMS: 6000 + internalQueryExecYieldIterations: 1000000 num_rs_nodes_per_shard: 2 num_shards: 2 enable_balancer: true diff --git a/buildscripts/resmokeconfig/suites/sharding_jscore_passthrough_with_balancer.yml b/buildscripts/resmokeconfig/suites/sharding_jscore_passthrough_with_balancer.yml index 2180e2e2430..821b4970d72 100644 --- a/buildscripts/resmokeconfig/suites/sharding_jscore_passthrough_with_balancer.yml +++ b/buildscripts/resmokeconfig/suites/sharding_jscore_passthrough_with_balancer.yml @@ -84,6 +84,11 @@ executor: set_parameters: enableTestCommands: 1 reshardingMinimumOperationDurationMillis: 0 + # Increment the query yield period as a best effort to avoid getting a QueryPlanKilled error + # when a query and a moveCollection run concurrently (more info on SERVER-88275) + # TODO (SERVER-88275) Remove both parameters once this bug is being addressed + internalQueryExecYieldPeriodMS: 6000 + internalQueryExecYieldIterations: 1000000 num_rs_nodes_per_shard: 1 num_shards: 2 enable_balancer: true |
