123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- .\" Copyright (C) 1994-2018 Altair Engineering, Inc.
- .\" For more information, contact Altair at www.altair.com.
- .\"
- .\" This file is part of the PBS Professional ("PBS Pro") software.
- .\"
- .\" Open Source License Information:
- .\"
- .\" PBS Pro is free software. You can redistribute it and/or modify it under the
- .\" terms of the GNU Affero General Public License as published by the Free
- .\" Software Foundation, either version 3 of the License, or (at your option) any
- .\" later version.
- .\"
- .\" PBS Pro is distributed in the hope that it will be useful, but WITHOUT ANY
- .\" WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- .\" FOR A PARTICULAR PURPOSE.
- .\" See the GNU Affero General Public License for more details.
- .\"
- .\" You should have received a copy of the GNU Affero General Public License
- .\" along with this program. If not, see <http://www.gnu.org/licenses/>.
- .\"
- .\" Commercial License Information:
- .\"
- .\" For a copy of the commercial license terms and conditions,
- .\" go to: (http://www.pbspro.com/UserArea/agreement.html)
- .\" or contact the Altair Legal Department.
- .\"
- .\" Altair’s dual-license business model allows companies, individuals, and
- .\" organizations to create proprietary derivative works of PBS Pro and
- .\" distribute them - whether embedded or bundled with other software -
- .\" under a commercial license agreement.
- .\"
- .\" Use of Altair’s trademarks, including but not limited to "PBS™",
- .\" "PBS Professional®", and "PBS Pro™" and Altair’s logos is subject to Altair's
- .\" trademark licensing policies.
- .\"
- .TH pbs_release_nodes 1B "18 May 2018" Local "PBS Professional"
- .SH NAME
- .B pbs_release_nodes
- \- release vnodes assigned to a PBS job
- .SH SYNOPSIS
- .B pbs_release_nodes
- [-j <job ID>] <vnode> [<vnode> [<vnode>] ...]
- .br
- .B pbs_release_nodes
- [-j <job ID>] -a
- .br
- .B pbs_release_nodes
- --version
- .SH DESCRIPTION
- You can use the
- .B pbs_release_nodes
- command to release no-longer-needed
- vnodes assigned to a running job, before the job would normally
- release them. These vnodes are then available for use by other jobs.
- You can specify the names of vnodes to be released, or you can release
- all vnodes not on the primary execution host that are assigned to a
- running job via the
- .I -a
- option.
- .B Caveats and Restrictions
- .br
- You can release only vnodes that are not on the primary execution
- host. You cannot release vnodes on the primary execution host.
- The job must be running (in the
- .I R
- state).
- The pbs_release_nodes command is not supported on vnodes tied to Cray
- X* series systems (vnodes whose
- .I vntype
- has the "cray_" prefix).
- The pbs_release_nodes command is not supported for vnodes managed by
- cpuset MoMs; partial release of vnodes may result in leftover cpusets.
- If cgroups support is enabled, and pbs_release_nodes is called to
- release some but not all the vnodes managed by a MoM, resources on
- those vnodes that are part of a cgroup are not released until the
- entire cgroup is released.
- .B Required Privilege
- .br
- This command can be run by the job owner, the PBS Manager, Operator,
- and Administrator, as well as root on Linux and Admin on Windows.
- .SH Options to pbs_release_nodes
- .IP "-a" 10
- Releases all job vnodes not on the primary execution host. Cannot be
- used with list of vnode names.
- .IP "-j <job ID>" 10
- Specifies the job ID for the job whose vnode(s) are to be released.
- .IP "(no options)" 10
- Without the
- .I -j
- option, pbs_release_nodes uses the value of the
- .I PBS_JOBID
- environment variable as the job ID of the job whose vnodes are to be released.
- .IP "--version" 10
- The pbs_release_nodes command returns its PBS version information and exits.
- This option can only be used alone.
- .SH Operands for pbs_release_nodes
- The pbs_release_nodes command can take as an operand a list of vnodes. Format:
- .br
- .I <vnode name> [<vnode name> [<vnode name>] ...]
- .br
- Cannot be used with the
- .I -a
- option.
- .SH Usage
- This command can be run at the command line, or called inside a job
- script, where it can use the value of the
- .I PBS_JOBID
- environment variable.
- You can release any vnode that appears in the job's
- .I exec_vnode
- attribute that is not on the primary execution host. You can release
- a particular set of a job's vnodes, or you can release all of a job's
- non-primary-execution-host vnodes.
- To release specific vnodes:
- .br
- .I pbs_release_nodes [-j <job ID>] <vnode name> [<vnode name>] ...]
- To release all of a jobÕs vnodes that are not on the primary execution host:
- .br
- .I pbs_release_nodes [-j <job ID>] -a
|