Skip to content

Commit 4b101fe

Browse files
MDBF-1076 - Increase jobs for clang-20 debug builder
Tests showed 2 hours for parallel = 6 during MTR: https://buildbot.dev.mariadb.org/#/builders/535/builds/7 Quite unacceptable. Increasing parallel for the builder will decrease a host capacity to build a whole push if max_worker_jobs < requested_jobs Current CPU/MEM utilisation over 1M for hz-bbw8 and 9 is: - CPU Max around 70 % - MEM Max around 30 % This means we can allocate more jobs than CPU's available. Increased to 110 so that a host will continue to build a whole push.
1 parent 94a7c68 commit 4b101fe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

master-migration/master.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ c = BuildmasterConfig = base_master_config(config)
3333

3434
WORKER_POOL = worker.WorkerPool()
3535
WORKER_POOL.add(
36-
arch="amd64", worker=worker.NonLatent(name="hz-bbw8", config=config, total_jobs=96)
36+
arch="amd64", worker=worker.NonLatent(name="hz-bbw8", config=config, total_jobs=110)
3737
)
3838
WORKER_POOL.add(
39-
arch="amd64", worker=worker.NonLatent(name="hz-bbw9", config=config, total_jobs=96)
39+
arch="amd64", worker=worker.NonLatent(name="hz-bbw9", config=config, total_jobs=110)
4040
)
4141

4242

@@ -281,7 +281,7 @@ def msan_builder(name: str, debug: bool) -> GenericBuilder:
281281
jobs = 12
282282
if debug:
283283
tag_msan = tags_msan + ("debug",)
284-
jobs = 6
284+
jobs = 20
285285

286286
return GenericBuilder(
287287
name=name,

0 commit comments

Comments
 (0)