From 72459acce1b4cdf20b7478ac9d6780389a396878 Mon Sep 17 00:00:00 2001 From: Mahesh Binzer-Panchal Date: Thu, 27 Aug 2026 08:39:16 +0200 Subject: [PATCH] Add local executor resource limits to Pelle profile Cap local jobs so they don't overburden the shared login node. Bianca and Miarka login nodes are dedicated per-project/user, so they're left uncapped. Memory follows UPPMAX's own documented 128GiB per-user quota on Pelle login nodes; the CPU cap is not yet confirmed against an official limit. --- conf/uppmax/pelle.config | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/conf/uppmax/pelle.config b/conf/uppmax/pelle.config index daa3fcff2..04a5567af 100644 --- a/conf/uppmax/pelle.config +++ b/conf/uppmax/pelle.config @@ -55,3 +55,11 @@ singularity { // Forward Slurm's per-job GPU visibility restriction into the container. envWhitelist = 'SNIC_TMP,CUDA_VISIBLE_DEVICES' } + +// Cap local jobs so they don't overburden the shared login node +executor { + $local { + cpus = 8 + memory = 128.GB + } +}