diff options
author | Mikhail Shchatko <mikhail.shchatko@mongodb.com> | 2021-12-17 16:34:42 +0300 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2021-12-21 08:54:44 +0000 |
commit | 58ca93e30a6436f47a8e8eaa3ddc831e376965dc (patch) | |
tree | 97c201ea7914fc0aade3ae304a1719f0846a9d46 /buildscripts | |
parent | 23c052e3e321dbab90f1863d4d5539d7c1a1cf44 (diff) | |
download | mongo-58ca93e30a6436f47a8e8eaa3ddc831e376965dc.tar.gz |
SERVER-62140 Reduce resmoke jobs for multi_stmt_txn_jscore_passthrough_with_migration on RHEL 8.0 inMemory
Diffstat (limited to 'buildscripts')
-rw-r--r-- | buildscripts/evergreen_resmoke_job_count.py | 5 |
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}] |