Skip to content
Snippets Groups Projects
Commit 8714a0e4 authored by Damien Leong's avatar Damien Leong
Browse files

Changes to job_filter in M3

Former-commit-id: 2834fa58
parent 6c5b27e4
No related branches found
No related tags found
No related merge requests found
......@@ -37,6 +37,19 @@ if ((job_desc.partition == "m3c" ) or (job_desc.partition == "m3h" ) or (job_des
return slurm.SUCCESS
end
-- Check for QOS rtq in m3c, m3h and m3g, then forward job to rtqp,comp,m3g
if job_desc.qos == "rtq" then
local partition = ""
partition = "rtqp,comp,m3g"
slurm.log_info("slurm_job_submit: for user: %u, partition: %s", submit_uid, partition)
job_desc.partition = partition
return slurm.SUCCESS
end
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment