SERVER-122864: Add high memory pools for tests (#50622)

GitOrigin-RevId: 9d6d287b0e62ec86a18cd5ed033922e2ba285691
This commit is contained in:
Sean Lyons 2026-03-30 12:54:29 -04:00 committed by MongoDB Bot
parent 61fda5680d
commit 5c3f95d244

View File

@ -14,6 +14,10 @@ POOLS_X86 = {
"cpus": 2,
"memory_gb": 7,
},
"high_mem_2core_x86_64": {
"cpus": 2,
"memory_gb": 14,
},
}
POOLS_ARM = {
@ -29,6 +33,10 @@ POOLS_ARM = {
"cpus": 2,
"memory_gb": 7,
},
"high_memory_2core_arm64": {
"cpus": 2,
"memory_gb": 14,
},
}
def _parse_cpu_tag(tags):