Skip to content

Commit

Permalink
Merge branch 'master' into crg
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseEspinosa authored Aug 7, 2024
2 parents a9b54d4 + dd2adf2 commit 2b8a1c7
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions conf/vsc_kul_uhasselt.config
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ if (! tier1_project && (hostname.contains("genius") || hostname.contains("wice")
}


// Reduce the job submit rate to about 30 per minute, this way the server won't be bombarded with jobs
// Reduce the job submit rate to about 50 per minute, this way the server won't be bombarded with jobs
// Limit queueSize to keep job rate under control and avoid timeouts
executor {
submitRateLimit = '50/1min'
queueSize = 30
exitReadTimeout = "3day"
exitReadTimeout = "10min"
}

// Add backoff strategy to catch cluster timeouts and proper symlinks of files in scratch to the work directory
Expand All @@ -39,7 +39,7 @@ process {
stageOutMode = "rsync"
errorStrategy = { sleep(Math.pow(2, task.attempt) * 200 as long); return 'retry' }
maxRetries = 5
array = 10
// array = 50
}

// Specify that singularity should be used and where the cache dir will be for the images
Expand Down Expand Up @@ -91,12 +91,13 @@ profiles {
}
}
}
clusterOptions = { "--cluster genius --account=$tier1_project" }
clusterOptions = { "--clusters=genius --account=$tier1_project" }
scratch = "$scratch_dir"
}
}

wice {

params {
config_profile_description = 'HPC_WICE profile for use on the Wice cluster of the VSC HPC.'
config_profile_contact = '[email protected]'
Expand Down Expand Up @@ -126,7 +127,7 @@ profiles {
}
}
}
clusterOptions = { "--cluster wice --account=$tier1_project" }
clusterOptions = { "--clusters=wice --account=$tier1_project"}
scratch = "$scratch_dir"
}
}
Expand All @@ -144,7 +145,7 @@ profiles {
process {
executor = 'slurm'
queue = { task.time <= 72.h ? 'superdome' : 'superdome_long' }
clusterOptions = { "--cluster genius --account=$tier1_project" }
clusterOptions = {"--clusters=genius --account=$tier1_project"}
scratch = "$scratch_dir"
}
}
Expand Down

0 comments on commit 2b8a1c7

Please sign in to comment.