Difference between revisions of "Job Group Limits"
Jump to navigation
Jump to search
(Created page with "* Note, you need to be lsfadmin or hpcadmin (the LSF admin as defined in lsf.conf) ===== Create Job Group ===== <syntaxhighlight> bgadd /group_name bgadd /group_name/sub_group bgadd -L ...") |
|||
| Line 1: | Line 1: | ||
* Note, you need to be lsfadmin or hpcadmin (the LSF admin as defined in lsf.conf) | * Note, you need to be lsfadmin or hpcadmin (the LSF admin as defined in lsf.conf) | ||
| − | + | == Create Job Group == | |
<syntaxhighlight> | <syntaxhighlight> | ||
bgadd /group_name | bgadd /group_name | ||
| Line 11: | Line 11: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
| − | + | == Check the Job Group Status == | |
<syntaxhighlight> | <syntaxhighlight> | ||
[hpcadmin@vhpchead etc]$ bjgroup | [hpcadmin@vhpchead etc]$ bjgroup | ||
| Line 18: | Line 18: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
| − | + | == Change the group limits == | |
<syntaxhighlight> | <syntaxhighlight> | ||
[hpcadmin@vhpchead etc]$ bgmod -L 10 /physics_group | [hpcadmin@vhpchead etc]$ bgmod -L 10 /physics_group | ||
Latest revision as of 09:25, 1 May 2013
- Note, you need to be lsfadmin or hpcadmin (the LSF admin as defined in lsf.conf)
Create Job Group
bgadd /group_name
bgadd /group_name/sub_group
bgadd -L [job_limit] /group_name
[hpcadmin@vhpchead etc]$ bgadd -L 1000 /physics_group
Job group </physics_group> was added.Check the Job Group Status
[hpcadmin@vhpchead etc]$ bjgroup
GROUP_NAME NJOBS PEND RUN SSUSP USUSP FINISH SLA JLIMIT OWNE
/physics_group 1 0 0 0 0 1 () 0/1000 hpcadmiChange the group limits
[hpcadmin@vhpchead etc]$ bgmod -L 10 /physics_group
Job group /physics_group is modified.
[hpcadmin@vhpchead etc]$ bjgroup
GROUP_NAME NJOBS PEND RUN SSUSP USUSP FINISH SLA JLIMIT OWNER
/physics_group 1 0 0 0 0 1 () 0/10 hpcadmin