From c12b48f0adfe757e3871aab85d9fd3691f111617 Mon Sep 17 00:00:00 2001 From: AmstlerStephan Date: Wed, 6 Mar 2024 16:11:02 +0100 Subject: [PATCH] reduce initial polish cluster resources but increase retry --- config/base.config | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/base.config b/config/base.config index 6da52d0..6a4280d 100644 --- a/config/base.config +++ b/config/base.config @@ -4,10 +4,10 @@ // PROCESS RESOURCES process { withName: "POLISH_CLUSTER" { - memory = { 10.GB * task.attempt } - cpus = 2 + memory = { 1.GB * task.attempt } + cpus = 1 } errorStrategy = 'retry' - maxRetries = 3 + maxRetries = 5 }