summaryrefslogtreecommitdiff
path: root/buildscripts/evergreen_resmoke_job_count.py
diff options
context:
space:
mode:
authorMax Hirschhorn <max.hirschhorn@mongodb.com>2019-04-22 16:39:51 -0400
committerMax Hirschhorn <max.hirschhorn@mongodb.com>2019-04-22 16:39:51 -0400
commit689679706bea557a112017d2640002394ee9e75f (patch)
tree5108a08663042732cc58423d515e9191b17a31d5 /buildscripts/evergreen_resmoke_job_count.py
parent92893a712df592d7742a91aa56fc783707a2ece6 (diff)
downloadmongo-689679706bea557a112017d2640002394ee9e75f.tar.gz
SERVER-40758 Increase memory for logical_session_cache_repl* tasks.
The logical_session_cache_repl* tasks now run with --jobs=3 on the rhel62-small distro as part of the Enterprise RHEL 6.2 build variant.
Diffstat (limited to 'buildscripts/evergreen_resmoke_job_count.py')
-rw-r--r--buildscripts/evergreen_resmoke_job_count.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/buildscripts/evergreen_resmoke_job_count.py b/buildscripts/evergreen_resmoke_job_count.py
index 01213eb0869..6d82d251f30 100644
--- a/buildscripts/evergreen_resmoke_job_count.py
+++ b/buildscripts/evergreen_resmoke_job_count.py
@@ -14,10 +14,11 @@ PLATFORM_MACHINE = platform.machine()
SYS_PLATFORM = sys.platform
VARIANT_TASK_FACTOR_OVERRIDES = {
+ "enterprise-rhel-62-64-bit": [{"task": r"logical_session_cache_replication.*", "factor": 0.75}],
"enterprise-rhel-62-64-bit-inmem": [{"task": "secondary_reads_passthrough", "factor": 0.3}]
}
-TASKS_FACTORS = [{"task": "replica_sets*", "factor": 0.5}, {"task": "sharding.*", "factor": 0.5}]
+TASKS_FACTORS = [{"task": r"replica_sets.*", "factor": 0.5}, {"task": r"sharding.*", "factor": 0.5}]
MACHINE_TASK_FACTOR_OVERRIDES = {"aarch64": TASKS_FACTORS}