summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
authorArun Banala <arun.banala@10gen.com>2019-09-16 13:41:33 +0000
committerevergreen <evergreen@mongodb.com>2019-09-16 13:41:33 +0000
commit2f21c91f3c72be9ecea67c1d391c713b05d97a29 (patch)
treedc697e96a5ef204b35ce7770c809c4c02b1997fb /buildscripts
parente8a57efe63c2f40b0713e49fd7437e2d2c21cbda (diff)
downloadmongo-2f21c91f3c72be9ecea67c1d391c713b05d97a29.tar.gz
SERVER-43319 Increase cursor timeout for 'concurrency_simultaneous' fixtures
Diffstat (limited to 'buildscripts')
-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
-rw-r--r--buildscripts/resmokeconfig/suites/concurrency_simultaneous_replication_wiredtiger_eviction_debug.yml3
4 files changed, 12 insertions, 0 deletions
diff --git a/buildscripts/resmokeconfig/suites/concurrency_simultaneous.yml b/buildscripts/resmokeconfig/suites/concurrency_simultaneous.yml
index a798db7d68a..81e56d57edc 100644
--- a/buildscripts/resmokeconfig/suites/concurrency_simultaneous.yml
+++ b/buildscripts/resmokeconfig/suites/concurrency_simultaneous.yml
@@ -55,6 +55,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 86f49f54b9a..03a8a95756f 100644
--- a/buildscripts/resmokeconfig/suites/concurrency_simultaneous_replication.yml
+++ b/buildscripts/resmokeconfig/suites/concurrency_simultaneous_replication.yml
@@ -79,6 +79,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 1fe94e4b2cf..048f20abce5 100644
--- a/buildscripts/resmokeconfig/suites/concurrency_simultaneous_replication_wiredtiger_cursor_sweeps.yml
+++ b/buildscripts/resmokeconfig/suites/concurrency_simultaneous_replication_wiredtiger_cursor_sweeps.yml
@@ -77,6 +77,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_eviction_debug.yml b/buildscripts/resmokeconfig/suites/concurrency_simultaneous_replication_wiredtiger_eviction_debug.yml
index e6bf1827e02..c068ce14806 100644
--- a/buildscripts/resmokeconfig/suites/concurrency_simultaneous_replication_wiredtiger_eviction_debug.yml
+++ b/buildscripts/resmokeconfig/suites/concurrency_simultaneous_replication_wiredtiger_eviction_debug.yml
@@ -77,6 +77,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
# Enable aggressive WiredTiger eviction.
wiredTigerEvictionDebugMode: true