summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Banala <arun.banala@10gen.com>2019-11-22 12:07:39 +0000
committerevergreen <evergreen@mongodb.com>2019-11-22 12:07:39 +0000
commite19d92cb777cb87779b614c30b1ed568a6eea088 (patch)
tree3026222d2dc7e50bf6f27df3cd2967ad25882726
parent798930ece5fbb94a00bb88ac81fe36ddbfab536e (diff)
downloadmongo-e19d92cb777cb87779b614c30b1ed568a6eea088.tar.gz
SERVER-43319 Increase cursor timeout for 'concurrency_simultaneous' fixtures
(cherry picked from commit 2f21c91f3c72be9ecea67c1d391c713b05d97a29)
-rw-r--r--buildscripts/resmokeconfig/suites/concurrency_simultaneous.yml3
-rw-r--r--buildscripts/resmokeconfig/suites/concurrency_simultaneous_replication.yml3
-rw-r--r--buildscripts/resmokeconfig/suites/concurrency_simultaneous_replication_wiredtiger_cursor_sweeps.yml3
3 files changed, 9 insertions, 0 deletions
diff --git a/buildscripts/resmokeconfig/suites/concurrency_simultaneous.yml b/buildscripts/resmokeconfig/suites/concurrency_simultaneous.yml
index 1e203b6bbcd..f9bbdf23b53 100644
--- a/buildscripts/resmokeconfig/suites/concurrency_simultaneous.yml
+++ b/buildscripts/resmokeconfig/suites/concurrency_simultaneous.yml
@@ -49,6 +49,9 @@ executor:
class: MongoDFixture
mongod_options:
set_parameters:
+ # Increase the timeout of the cursor so that the cursor will continue to stay alive even
+ # when there is a delay in lock acquisition during a getMore command.
+ cursorTimeoutMillis: 3600000
enableTestCommands: 1
# We have historically had deadlocks occur due to lock acquisition issues involving the
# system running out of WiredTiger write tickets. We intentionally lower the number of
diff --git a/buildscripts/resmokeconfig/suites/concurrency_simultaneous_replication.yml b/buildscripts/resmokeconfig/suites/concurrency_simultaneous_replication.yml
index 4c33475b171..5b513a0cd10 100644
--- a/buildscripts/resmokeconfig/suites/concurrency_simultaneous_replication.yml
+++ b/buildscripts/resmokeconfig/suites/concurrency_simultaneous_replication.yml
@@ -73,6 +73,9 @@ executor:
mongod_options:
oplogSize: 1024
set_parameters:
+ # Increase the timeout of the cursor so that the cursor will continue to stay alive even
+ # when there is a delay in lock acquisition during a getMore command.
+ cursorTimeoutMillis: 3600000
enableTestCommands: 1
# We have historically had deadlocks occur due to lock acquisition issues involving the
# system running out of WiredTiger write tickets. We intentionally lower the number of
diff --git a/buildscripts/resmokeconfig/suites/concurrency_simultaneous_replication_wiredtiger_cursor_sweeps.yml b/buildscripts/resmokeconfig/suites/concurrency_simultaneous_replication_wiredtiger_cursor_sweeps.yml
index 010caacc1bf..6091aec93d4 100644
--- a/buildscripts/resmokeconfig/suites/concurrency_simultaneous_replication_wiredtiger_cursor_sweeps.yml
+++ b/buildscripts/resmokeconfig/suites/concurrency_simultaneous_replication_wiredtiger_cursor_sweeps.yml
@@ -71,6 +71,9 @@ executor:
mongod_options:
oplogSize: 1024
set_parameters:
+ # Increase the timeout of the cursor so that the cursor will continue to stay alive even
+ # when there is a delay in lock acquisition during a getMore command.
+ cursorTimeoutMillis: 3600000
enableTestCommands: 1
# We have historically had deadlocks occur due to lock acquisition issues involving the
# system running out of WiredTiger write tickets. We intentionally lower the number of