From 6db39356cf5a942a1b8aac07feaefb032e6f0a80 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Thu, 8 Feb 2024 15:25:20 +0000 Subject: [PATCH] config.json: Try allowing a bit more parallelism Currently the autobuilders seem to run at 25% idle at times. We see a lof of bouncing on IO load and it appears the systems could cope with higher values. Increase the make load average, cpu and IO pressure limits a bit to see if build times improve. Signed-off-by: Richard Purdie --- config.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config.json b/config.json index e8b51cd..7539aeb 100644 --- a/config.json +++ b/config.json @@ -49,9 +49,9 @@ "BB_GENERATE_MIRROR_TARBALLS = '1'", "BB_NUMBER_THREADS = '16'", "BB_NUMBER_PARSE_THREADS = '16'", - "PARALLEL_MAKE = '-j 16 -l 52'", - "BB_PRESSURE_MAX_CPU = '10000'", - "BB_PRESSURE_MAX_IO = '10000'", + "PARALLEL_MAKE = '-j 16 -l 75'", + "BB_PRESSURE_MAX_CPU = '20000'", + "BB_PRESSURE_MAX_IO = '20000'", "XZ_MEMLIMIT = '5%'", "XZ_THREADS = '8'", "ZSTD_THREADS = '8'",