summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikhail Shchatko <mikhail.shchatko@mongodb.com>2021-12-17 16:34:42 +0300
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-12-21 09:26:37 +0000
commitc5cd78d07929fd96a95d8a7fee2e930c2980d7db (patch)
treedac4723655bd505e1a601d32227fef670b34aef4
parent4fab480e046c332f2bc7aa9042033995ff1cf3b3 (diff)
downloadmongo-c5cd78d07929fd96a95d8a7fee2e930c2980d7db.tar.gz
SERVER-62140 Reduce resmoke jobs for multi_stmt_txn_jscore_passthrough_with_migration on RHEL 8.0 inMemory
(cherry picked from commit 58ca93e30a6436f47a8e8eaa3ddc831e376965dc)
-rw-r--r--buildscripts/evergreen_resmoke_job_count.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/buildscripts/evergreen_resmoke_job_count.py b/buildscripts/evergreen_resmoke_job_count.py
index 74ade20fa95..438648dea89 100644
--- a/buildscripts/evergreen_resmoke_job_count.py
+++ b/buildscripts/evergreen_resmoke_job_count.py
@@ -31,7 +31,10 @@ SYS_PLATFORM = sys.platform
# Apply factor for a task based on the build variant it is running on.
VARIANT_TASK_FACTOR_OVERRIDES = {
"enterprise-rhel-80-64-bit": [{"task": r"logical_session_cache_replication.*", "factor": 0.75}],
- "enterprise-rhel-80-64-bit-inmem": [{"task": "secondary_reads_passthrough", "factor": 0.3}]
+ "enterprise-rhel-80-64-bit-inmem": [
+ {"task": "secondary_reads_passthrough", "factor": 0.3},
+ {"task": "multi_stmt_txn_jscore_passthrough_with_migration", "factor": 0.3},
+ ]
}
TASKS_FACTORS = [{"task": r"replica_sets.*", "factor": 0.5}, {"task": r"sharding.*", "factor": 0.5}]