Merge "multiproduct_kati: increase ram per job to 25GB"

This commit is contained in:
Treehugger Robot
2021-01-27 01:00:51 +00:00
committed by Gerrit Code Review

View File

@@ -244,7 +244,7 @@ func main() {
jobs = runtime.NumCPU() / 4
ramGb := int(config.TotalRAM() / 1024 / 1024 / 1024)
if ramJobs := ramGb / 20; ramGb > 0 && jobs > ramJobs {
if ramJobs := ramGb / 25; ramGb > 0 && jobs > ramJobs {
jobs = ramJobs
}