qsub man page - Sun Grid Engine (original) (raw)
NAME qsub - submit a batch job to Sun Grid Engine.
qsh - submit an interactive X-windows session to Sun
Grid Engine.
qlogin - submit an interactive login session to Sun Grid
Engine.
qrsh - submit an interactive rsh session to Sun Grid
Engine.
qalter - modify a pending or running batch job of Sun Grid
Engine.
qresub - submit a copy of an existing Sun Grid Engine job.
SYNTAX qsub [ options ] [ command | -- [ command_args ]]
qsh [ options ] [ -- xterm_args ]
qlogin [ options ]
qrsh [ options ] [ command [ command_args ]]
qalter [ options ] wc_job_range_list [ -- [ command_args ]]
qalter [ options ] -u user_list | -uall [ -- [ command_args
]]
qresub [ options ] job_id_list
DESCRIPTION Qsub submits batch jobs to the Sun Grid Engine queuing sys- tem. Sun Grid Engine supports single- and multiple-node jobs. Command can be a path to a binary or a script (see -b below) which contains the commands to be run by the job using a shell (for example, sh(1) or csh(1)). Arguments to the command are given as command_args to qsub . If command is handled as a script then it is possible to embed flags in the script. If the first two characters of a script line either match '#$' or are equal to the prefix string defined with the -C option described below, the line is parsed for embedded command flags.
_Qsh_ submits an interactive X-windows session to Sun Grid
Engine. An **[xterm(1)](../htmlman1/xterm.html?pathrev=V62u5%5FTAG)** is brought up from the executing machine
with the display directed either to the X-server indicated
by the DISPLAY environment variable or as specified with the
-_display_ _qsh_ option. Interactive jobs are not spooled if no
resource is available to execute them. They are either
dispatched to a suitable machine for execution immediately
or the user submitting the job is notified by _qsh_ that
appropriate resources to execute the job are not available.
xterm_args are passed to the **[xterm(1)](../htmlman1/xterm.html?pathrev=V62u5%5FTAG)** executable. Note,
however, that the -_e_ and -_ls_ xterm options do not work with
_qsh_ .
_Qlogin_ is similar to _qsh_ in that it submits an interactive
job to the queuing system. It does not open an **[xterm(1)](../htmlman1/xterm.html?pathrev=V62u5%5FTAG)** win-
dow on the X display, but uses the current terminal for user
I/O. Usually, _qlogin_ establishes a **[telnet(1)](../htmlman1/telnet.html?pathrev=V62u5%5FTAG)** connection with
the remote host, using standard client- and server-side com-
mands. These commands can be configured with the
qlogin_daemon (server-side, Sun Grid Engine _telnetd_ if not
set, otherwise something like /usr/sbin/in.telnetd) and
qlogin_command (client-side, Sun Grid Engine _telnet_ if not
set, otherwise something like /usr/bin/telnet) parameters in
the global and local configuration settings of **[sge_conf(5)](../htmlman5/sge%5Fconf.html?pathrev=V62u5%5FTAG)**.
The client side command is automatically parameterized with
the remote host name and port number to which to connect,
resulting in an invocation like
/usr/bin/telnet my_exec_host 2442
for example. _Qlogin_ is invoked exactly like _qsh_ and its
jobs can only run on INTERACTIVE queues. _Qlogin_ jobs can
only be used if the **[sge_execd(8)](../htmlman8/sge%5Fexecd.html?pathrev=V62u5%5FTAG)** is running under the root
account.
_Qrsh_ is similar to _qlogin_ in that it submits an interactive
job to the queuing system. It uses the current terminal for
user I/O. Usually, _qrsh_ establishes a **[rsh(1)](../htmlman1/rsh.html?pathrev=V62u5%5FTAG)** connection with
the remote host. If no command is given to _qrsh_, an _rlo-_
**[gin(1)](../htmlman1/gin.html?pathrev=V62u5%5FTAG)** session is established. The server-side commands
used can be configured with the rsh_daemon and rlogin_daemon
parameters in the global and local configuration settings of
**[sge_conf(5)](../htmlman5/sge%5Fconf.html?pathrev=V62u5%5FTAG)**. An Sun Grid Engine _rshd_ or _rlogind_ is used if
the parameters are not set. If the parameters are set, they
should be set to something like /usr/sbin/in.rshd or
/usr/sbin/in.rlogind. On the client-side, the rsh_command
and rlogin_command parameters can be set in the global and
local configuration settings of **[sge_conf(5)](../htmlman5/sge%5Fconf.html?pathrev=V62u5%5FTAG)**. If they are
not set, special Sun Grid Engine **[rsh(1)](../htmlman1/rsh.html?pathrev=V62u5%5FTAG)** and **[rlogin(1)](../htmlman1/rlogin.html?pathrev=V62u5%5FTAG)**
binaries delivered with Sun Grid Engine are used. Use the
cluster configuration parameters to integrate mechanisms
like _ssh_ or the **[rsh(1)](../htmlman1/rsh.html?pathrev=V62u5%5FTAG)** and **[rlogin(1)](../htmlman1/rlogin.html?pathrev=V62u5%5FTAG)** facilities supplied
with the operating system.
_Qrsh_ jobs can only run in INTERACTIVE queues unless the
option -now no is used (see below). They can also only be
run, if the **[sge_execd(8)](../htmlman8/sge%5Fexecd.html?pathrev=V62u5%5FTAG)** is running under the root account.
_Qrsh_ provides an additional useful feature for integrating
with interactive tools providing a specific command shell.
If the environment variable QRSH_WRAPPER is set when _qrsh_ is
invoked, the command interpreter pointed to by QRSH_WRAPPER
will be executed to run _qrsh_ commands instead of the users
login shell or any shell specified in the _qrsh_ command-line.
The options -cwd, -v, -V, and -display only apply to
batch jobs.
_Qalter_ can be used to change the attributes of pending jobs.
For array jobs with a mix of running and pending tasks (see
the -t option below), modification with _qalter_ only affects
the pending tasks. _Qalter_ can change most of the charac-
teristics of a job (see the corresponding statements in the
OPTIONS section below), including those which were defined
as embedded flags in the script file (see above). Some sub-
mit options, such as the job script, cannot be changed with
I. qalter.
_Qresub_ allows the user to create jobs as copies of existing
pending or running jobs. The copied jobs will have exactly
the same attributes as the ones from which they were copied,
except with a new job ID and with a cleared hold state. The
only modification to the copied jobs supported by _qresub_ is
assignment of a new hold state with the -h option. This
option can be used to first copy a job and then change its
attributes via _qalter_.
Only a manager can use _qresub_ on jobs submitted by another
user. Regular users can only use _qresub_ on their own jobs.
For _qsub_, _qsh_, _qrsh_, and _qlogin_ the administrator and the
user may define default request files (see **[sge_request(5)](../htmlman5/sge%5Frequest.html?pathrev=V62u5%5FTAG)**)
which can contain any of the options described below. If an
option in a default request file is understood by _qsub_ and
_qlogin_ but not by _qsh_ the option is silently ignored if _qsh_
is invoked. Thus you can maintain shared default request
files for both _qsub_ and _qsh_.
A cluster wide default request file may be placed under
<span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mi>S</mi><mi>G</mi><msub><mi>E</mi><mi>R</mi></msub><mi>O</mi><mi>O</mi><mi>T</mi><mi mathvariant="normal">/</mi></mrow><annotation encoding="application/x-tex">SGE_ROOT/</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:1em;vertical-align:-0.25em;"></span><span class="mord mathnormal">SG</span><span class="mord"><span class="mord mathnormal" style="margin-right:0.05764em;">E</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3283em;"><span style="top:-2.55em;margin-left:-0.0576em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mathnormal mtight" style="margin-right:0.00773em;">R</span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span><span class="mord mathnormal" style="margin-right:0.13889em;">OOT</span><span class="mord">/</span></span></span></span>SGE_CELL/common/sge_request. User private
default request files are processed under the locations
<span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mi>H</mi><mi>O</mi><mi>M</mi><mi>E</mi><mi mathvariant="normal">/</mi><mi mathvariant="normal">.</mi><mi>s</mi><mi>g</mi><msub><mi>e</mi><mi>r</mi></msub><mi>e</mi><mi>q</mi><mi>u</mi><mi>e</mi><mi>s</mi><mi>t</mi><mi>a</mi><mi>n</mi><mi>d</mi></mrow><annotation encoding="application/x-tex">HOME/.sge_request and </annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:1em;vertical-align:-0.25em;"></span><span class="mord mathnormal" style="margin-right:0.08125em;">H</span><span class="mord mathnormal" style="margin-right:0.05764em;">OME</span><span class="mord">/.</span><span class="mord mathnormal">s</span><span class="mord mathnormal" style="margin-right:0.03588em;">g</span><span class="mord"><span class="mord mathnormal">e</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.1514em;"><span style="top:-2.55em;margin-left:0em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mathnormal mtight" style="margin-right:0.02778em;">r</span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span><span class="mord mathnormal">e</span><span class="mord mathnormal" style="margin-right:0.03588em;">q</span><span class="mord mathnormal">u</span><span class="mord mathnormal">es</span><span class="mord mathnormal">t</span><span class="mord mathnormal">an</span><span class="mord mathnormal">d</span></span></span></span>cwd/.sge_request. The working direc-
tory local default request file has the highest precedence,
then the home directory located file and then the cluster
global file. The option arguments, the embedded script
flags and the options in the default request files are pro-
cessed in the following order:
left to right in the script line,
left to right in the default request files,
from top to bottom of the script file (_qsub_ only),
from top to bottom of default request files,
from left to right of the command line.
In other words, the command line can be used to override the
embedded flags and the default request settings. The embed-
ded flags, however, will override the default settings.
Note, that the -_clear_ option can be used to discard any pre-
vious settings at any time in a default request file, in the
embedded script flags, or in a command-line option. It is,
however, not available with _qalter_.
The options described below can be requested either hard or
soft. By default, all requests are considered hard until
the -soft option (see below) is encountered. The hard/soft
status remains in effect until its counterpart is encoun-
tered again. If all the hard requests for a job cannot be
met, the job will not be scheduled. Jobs which cannot be
run at the present time remain spooled.
OPTIONS -@ optionfile Forces qsub, qrsh, qsh, or qlogin to use the options contained in optionfile. The indicated file may contain all valid options. Comment lines must start with a "#" sign.
-a date_time
Available for _qsub_ and _qalter_ only.
Defines or redefines the time and date at which a job
is eligible for execution. Date_time conforms to
[[CC]]YY]MMDDhhmm[.SS], for the details, please see
Date_time in: **[sge_types(1)](../htmlman1/sge%5Ftypes.html?pathrev=V62u5%5FTAG)**.
If this option is used with _qsub_ or if a corresponding
value is specified in _qmon_ then a parameter named a and
the value in the format CCYYMMDDhhmm.SS will be passed
to the defined JSV instances (see -jsv option below or
find more information concerning JSV in **[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-ac variable[=value],...
Available for _qsub_, _qsh_, _qrsh_, _qlogin_ and _qalter_ only.
Adds the given name/value pair(s) to the job's context.
Value may be omitted. Sun Grid Engine appends the given
argument to the list of context variables for the job.
Multiple -ac, -dc, and -sc options may be given. The
order is important here.
The outcome of the evaluation of all -ac, -dc, and -sc
options or corresponding values in _qmon_ is passed to
defined JSV instances as parameter with the name ac.
(see -jsv option below or find more information con-
cerning JSV in **[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**) _QALTER_ allows changing this
option even while the job executes.
-ar ar_id
Available for _qsub_, _qalter_, _qrsh_, _qsh_, or _qlogin_ only.
Assigns the submitted job to be a part of an existing
Advance Reservation. The complete list of existing
Advance Reservations can be obtained using the
**[qrstat(1)](../htmlman1/qrstat.html?pathrev=V62u5%5FTAG)** command.
Note that the -ar option adds implicitly the -w e
option if not otherwise requested.
_Qalter_ allows changing this option even while the job
executes. The modified parameter will only be in effect
after a restart or migration of the job however.
If this option or a corresponding value in _qmon_ is
specified then this value will be passed to defined JSV
instances as parameter with the name ar. (see -jsv
option below or find more information concerning JSV in
**[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-A account_string
Available for _qsub_, _qsh_, _qrsh_, _qlogin_ and _qalter_ only.
Identifies the account to which the resource consump-
tion of the job should be charged. The account_string
should conform to the name definition in M sge_types 1
. In the absence of this parameter Sun Grid Engine
will place the default account string "sge" in the
accounting record of the job.
_Qalter_ allows changing this option even while the job
executes.
If this option or a corresponding value in _qmon_ is
specified then this value will be passed to defined JSV
instances as parameter with the name A. (see -jsv
option below or find more information concerning JSV in
**[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-binding [ binding_instance ] binding_strategy
A job can request a specific processor core binding
(processor affinity) with this parameter. This request
is neither a hard nor a soft request, it is a hint for
the execution host to do this if possible. Please note
that the requested binding strategy is not used for
resource selection within Sun Grid Engine. As a
result an execution host might be selected where Sun
Grid Engine does not even know the hardware topology
and therefore is not able to apply the requested bind-
ing.
To enforce Sun Grid Engine to select hardware on which
the binding can be applied please use the -l switch in
combination with the complex attribute m_topology.
binding_instance is an optional parameter. It might
either be env, pe or set depending on which instance
should accomplish the job to core binding. If the value
for binding_instance is not specified then set will be
used.
env means that the environment variable SGE_BINDING
will be exported to the job environment of the job.
This variable contains the selected operating system
internal processor numbers. They might be more than
selected cores in presence of SMT or CMT because each
core could be represented by multiple processor iden-
tifiers. The processor numbers are space separated.
pe means that the information about the selected cores
appears in the fourth column of the pe_hostfile. Here
the logical core and socket numbers are printed (they
start at 0 and have no holes) in colon separated pairs
(i.e. 0,0:1,0 which means core 0 on socket 0 and core 0
on socket 1). For more information about the
$pe_hostfile check **[sge_pe(5)](../htmlman5/sge%5Fpe.html?pathrev=V62u5%5FTAG)**
set (default if nothing else is specified). The binding
strategy is applied by Sun Grid Engine. How this is
achieved depends on the underlying hardware architec-
ture of the execution host where the submitted job will
be started.
On Solaris 10 hosts a processor set will be created
where the job can exclusively run in. Because of
operating system limitations at least one core must
remain unbound. This resource could of course used by
an unbound job.
On Linux hosts a processor affinity mask will be set to
restrict the job to run exclusively on the selected
cores. The operating system allows other unbound
processes to use these cores. Please note that on
Linux the binding requires a Linux kernel version of
2.6.16 or greater. It might be even possible to use a
kernel with lower version number but in that case addi-
tional kernel patches have to be applied. The loadcheck
tool in the utilbin directory can be used to check if
the hosts capabilities. You can also use the -sep in
combination with -cb of **[qconf(5)](../htmlman5/qconf.html?pathrev=V62u5%5FTAG)** command to identify if
Sun Grid Engine is able to recognize the hardware
topology.
Possible values for binding_strategy are as follows:
linear:<amount>[:<socket>,<core>]
striding:<amount>:<n>[:<socket>,<core>]
explicit:[<socket>,<core>;...]<socket>,<core>
For the binding strategy linear and striding there is
an optional socket and core pair attached. These
denotes the mandatory starting point for the first core
to bind on.
linear means that Sun Grid Engine tries to bind the job
on amount successive cores. If socket and core is omit-
ted then Sun Grid Engine first allocates successive
cores on the first empty socket found. Empty means
that there are no jobs bound to the socket by Sun Grid
Engine. If this is not possible or is not sufficient
Sun Grid Engine tries to find (further) cores on the
socket with the most unbound cores and so on. If the
amount of allocated cores is lower than requested
cores, no binding is done for the job. If socket and
core is specified then Sun Grid Engine tries to find
amount of empty cores beginning with this starting
point. If this is not possible then binding is not
done.
striding means that Sun Grid Engine tries to find cores
with a certain offset. It will select amount of empty
cores with a offset of n -1 cores in between. Start
point for the search algorithm is socket 0 core 0. As
soon as amount cores are found they will be used to do
the job binding. If there are not enough empty cores
or if correct offset cannot be achieved then there will
be no binding done.
explicit binds the specified sockets and cores that are
mentioned in the provided socket/core list. Each
socket/core pair has to be specified only once. If a
socket/core pair is already in use by a different job
the whole binding request will be ignored.
Qalter allows changing this option even while the job
executes. The modified parameter will only be in effect
after a restart or migration of the job, however.
If this option or a corresponding value in qmon is
specified then these values will be passed to defined
JSV instances as parameters with the names
binding_strategy, binding_type, binding_amount,
binding_step, binding_socket, binding_core,
binding_exp_n, binding_exp_socket<id>,
binding_exp_core<id>.
Please note that the length of the socket/core value
list of the explicit binding is reported as
binding_exp_n. <id> will be replaced by the position of
the socket/core pair within the explicit list (0 <= id
< binding_exp_n). The first socket/core pair of the
explicit binding will be reported with the parameter
names binding_exp_socket0 and binding_exp_core0.
Values that do not apply for the specified binding will
not be reported to JSV. E.g. binding_step will only be
reported for the striding binding and all binding_exp_*
values will passed to JSV if explicit binding was
specified. (see -jsv option below or find more infor-
mation concerning JSV in **[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-b y[es]|n[o]
Available for _qsub_, _qrsh_ only. _Qalter_ does not allow
changing this option. This option cannot be embedded in
the script file itself.
Gives the user the possibility to indicate explicitly
whether command should be treated as binary or script.
If the value of -b is 'y', then command may be a
binary or script. The command might not be accessible
from the submission host. Nothing except the path of
the command will be transferred from the submission
host to the execution host. Path aliasing will be
applied to the path of command before command will be
executed.
If the value of -b is 'n' then command needs to be a
script and it will be handled as script. The script
file has to be accessible by the submission host. It
will be transferred to the execution host. _qsub_/_qrsh_
will search directive prefixes within script.
_qsub_ will implicitly use -b n whereas _qrsh_ will apply
the -b y option if nothing else is specified.
The value specified with this option or the correspond-
ing value specified in _qmon_ will only be passed to
defined JSV instances if the value is _yes_. The name of
the parameter will be b. The value will be y also when
then long form yes was specified during submission.
(see -jsv option below or find more information con-
cerning JSV in **[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
Please note that submission of command as script (-b n)
can have a significant performance impact, especially
for short running jobs and big job scripts. Script
submission adds a number of operations to the submis-
sion process: The job script needs to be
- parsed at client side (for special comments)
- transferred from submit client to qmaster
- spooled in qmaster
- transferred to execd at job execution
- spooled in execd
- removed from spooling both in execd and qmaster once the job is done
If job scripts are available on the execution nodes,
e.g. via NFS, binary submission can be the better
choice.
-c occasion_specifier
Available for _qsub_ and _qalter_ only.
Defines or redefines whether the job should be check-
pointed, and if so, under what circumstances. The
specification of the checkpointing occasions with this
option overwrites the definitions of the _when_ parameter
in the checkpointing environment (see **[checkpoint(5)](../htmlman5/checkpoint.html?pathrev=V62u5%5FTAG)**)
referenced by the _qsub_ -_ckpt_ switch. Possible values
for occasion_specifier are
n no checkpoint is performed.
s checkpoint when batch server is shut down.
m checkpoint at minimum CPU interval.
x checkpoint when job gets suspended.
<interval> checkpoint in the specified time interval.
The minimum CPU interval is defined in the queue confi-
guration (see **[queue_conf(5)](../htmlman5/queue%5Fconf.html?pathrev=V62u5%5FTAG)** for details). <interval>
has to be specified in the format hh:mm:ss. The max-
imum of <interval> and the queue's minimum CPU interval
is used if <interval> is specified. This is done to
ensure that a machine is not overloaded by checkpoints
being generated too frequently.
The value specified with this option or the correspond-
ing value specified in _qmon_ will be passed to defined
JSV instances. The <interval> will be available as
parameter with the name c_interval. The character
sequence specified will be available as parameter with
the name c_occasion. Please note that if you change
c_occasion via JSV then the last setting of c_interval
will be overwritten and vice versa. (see -jsv option
below or find more information concerning JSV in
**[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-ckpt ckpt_name
Available for _qsub_ and _qalter_ only.
Selects the checkpointing environment (see _check-_
**[point(5)](../htmlman5/point.html?pathrev=V62u5%5FTAG)**) to be used for checkpointing the job. Also
declares the job to be a checkpointing job.
If this option or a corresponding value in _qmon_ is
specified then this value will be passed to defined JSV
instances as parameter with the name ckpt. (see -jsv
option below or find more information concerning JSV in
**[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-clear
Available for _qsub_, _qsh_, _qrsh_, and _qlogin_ only.
Causes all elements of the job to be reset to the ini-
tial default status prior to applying any modifications
(if any) appearing in this specific command.
-cwd Available for _qsub_, _qsh_, _qrsh_ and _qalter_ only.
Execute the job from the current working directory.
This switch will activate Sun Grid Engine's path alias-
ing facility, if the corresponding configuration files
are present (see **[sge_aliases(5)](../htmlman5/sge%5Faliases.html?pathrev=V62u5%5FTAG)**).
In the case of _qalter_, the previous definition of the
current working directory will be overwritten if _qalter_
is executed from a different directory than the preced-
ing _qsub_ or _qalter_.
_Qalter_ allows changing this option even while the job
executes. The modified parameter will only be in effect
after a restart or migration of the job, however.
If this option or a corresponding value in _qmon_ is
specified then this value will be passed to defined JSV
instances as parameter with the name cwd. The value of
this parameter will be the absolute path to the current
working directory. JSV scripts can remove the path from
jobs during the verification process by setting the
value of this parameter to an empty string. As a result
the job behaves as if -cwd was not specified during job
submission. (see -jsv option below or find more infor-
mation concerning JSV in **[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-C prefix_string
Available for _qsub_ and _qrsh_ with script submission (-b
n).
_Prefix__ _string_ defines the prefix that declares a direc-
tive in the job's command. The prefix is not a job
attribute, but affects the behavior of _qsub_ and _qrsh_.
If prefix is a null string, the command will not be
scanned for embedded directives.
The directive prefix consists of two ASCII characters
which, when appearing in the first two bytes of a
script line, indicate that what follows is an Sun Grid
Engine command. The default is "#$".
The user should be aware that changing the first delim-
iting character can produce unforeseen side effects. If
the script file contains anything other than a "#"
character in the first byte position of the line, the
shell processor for the job will reject the line and
may exit the job prematurely.
If the -C option is present in the script file, it is
ignored.
-dc variable,...
Available for _qsub_, _qsh_, _qrsh_, _qlogin_ and _qalter_ only.
Removes the given variable(s) from the job's context.
Multiple -ac, -dc, and -sc options may be given. The
order is important.
_Qalter_ allows changing this option even while the job
executes.
The outcome of the evaluation of all -ac, -dc, and -sc
options or corresponding values in _qmon_ is passed to
defined JSV instances as parameter with the name ac.
(see -jsv option below or find more information con-
cerning JSV in **[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-display display_specifier
Available for _qsh_ and _qrsh_.
Directs **[xterm(1)](../htmlman1/xterm.html?pathrev=V62u5%5FTAG)** to use display_specifier in order to
contact the X server. The display_specifier has to
contain the hostname part of the display name (e.g.
myhost:1). Local display names (e.g. :0) cannot be used
in grid environments. Values set with the -display
option overwrite settings from the submission environ-
ment and from -v command line options.
If this option or a corresponding value in _qmon_ is
specified then this value will be passed to defined JSV
instances as parameter with the name display. This
value will also be available in the job environment
which might optionally be passed to JSV scripts. The
variable name will be DISPLAY. (see -jsv option below
or find more information concerning JSV in **[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-dl date_time
Available for _qsub_, _qsh_, _qrsh_, _qlogin_ and _qalter_ only.
Specifies the deadline initiation time in
[[CC]YY]MMDDhhmm[.SS] format (see -a option above). The
deadline initiation time is the time at which a dead-
line job has to reach top priority to be able to com-
plete within a given deadline. Before the deadline ini-
tiation time the priority of a deadline job will be
raised steadily until it reaches the maximum as config-
ured by the Sun Grid Engine administrator.
This option is applicable only for users allowed to
submit deadline jobs.
If this option or a corresponding value in _qmon_ is
specified then this value will be passed to defined JSV
instances as parameter with the name dl. The format for
the date_time value is CCYYMMDDhhmm.SS (see -jsv option
below or find more information concerning JSV in
**[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-e [[hostname]:]path,...
Available for _qsub_, _qsh_, _qrsh_, _qlogin_ and _qalter_ only.
Defines or redefines the path used for the standard
error stream of the job. For _qsh_, _qrsh_ and _qlogin_ only
the standard error stream of prolog and epilog is
redirected. If the path constitutes an absolute path
name, the error-path attribute of the job is set to
path, including the hostname. If the path name is rela-
tive, Sun Grid Engine expands path either with the
current working directory path (if the -cwd switch (see
above) is also specified) or with the home directory
path. If hostname is present, the standard error stream
will be placed in the corresponding location only if
the job runs on the specified host. If the path con-
tains a ":" without a hostname, a leading ":" has to be
specified.
By default the file name for interactive jobs is
/_dev_/_null_. For batch jobs the default file name has the
form _job__ _name_.e_job__ _id_ and _job__ _name_.e_job__ _id_.task_id for
array job tasks (see -t option below).
If path is a directory, the standard error stream of
the job will be put in this directory under the default
file name. If the pathname contains certain pseudo
environment variables, their value will be expanded at
runtime of the job and will be used to constitute the
standard error stream path name. The following pseudo
environment variables are supported currently:
$HOME home directory on execution machine
$USER user ID of job owner
$JOB_ID current job ID
$JOB_NAME current job name (see -N option)
$HOSTNAME name of the execution host
$TASK_ID array job task index number
Alternatively to $HOME the tilde sign "~" can be used
as common in **[csh(1)](../htmlman1/csh.html?pathrev=V62u5%5FTAG)** or **[ksh(1)](../htmlman1/ksh.html?pathrev=V62u5%5FTAG)**. Note, that the "~" sign
also works in combination with user names, so that
"~<user>" expands to the home directory of <user>.
Using another user ID than that of the job owner
requires corresponding permissions, of course.
_Qalter_ allows changing this option even while the job
executes. The modified parameter will only be in effect
after a restart or migration of the job, however.
If this option or a corresponding value in _qmon_ is
specified then this value will be passed to defined JSV
instances as parameter with the name e. (see -jsv
option below or find more information concerning JSV in
**[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-hard
Available for _qsub_, _qsh_, _qrsh_, _qlogin_ and _qalter_ only.
Signifies that all -q and -l resource requirements fol-
lowing in the command line will be hard requirements
and must be satisfied in full before a job can be
scheduled.
As Sun Grid Engine scans the command line and script
file for Sun Grid Engine options and parameters it
builds a list of resources required by a job. All such
resource requests are considered as absolutely essen-
tial for the job to commence. If the -soft option (see
below) is encountered during the scan then all follow-
ing resources are designated as "soft requirements" for
execution, or "nice-to-have, but not essential". If the
-hard flag is encountered at a later stage of the scan,
all resource requests following it once again become
"essential". The -hard and -soft options in effect act
as "toggles" during the scan.
If this option or a corresponding value in _qmon_ is
specified then the corresponding -q and -l resource
requirements will be passed to defined JSV instances as
parameter with the names q_hard and l_hard. Find for
information in the sections describing -q and -l. (see
-jsv option below or find more information concerning
JSV in **[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-h | -h {u|s|o|n|U|O|S}...
Available for _qsub_ (only -h), _qrsh_, _qalter_ and _qresub_
(hold state is removed when not set explicitly).
List of holds to place on a job, a task or some tasks
of a job.
`u' denotes a user hold.
`s' denotes a system hold.
`o' denotes a operator hold.
`n' denotes no hold (requires manager privileges).
As long as any hold other than `n' is assigned to the
job the job is not eligible for execution. Holds can be
released via _qalter_ and **[qrls(1)](../htmlman1/qrls.html?pathrev=V62u5%5FTAG)**. In case of _qalter_
this is supported by the following additional option
specifiers for the -h switch:
`U' removes a user hold.
`S' removes a system hold.
`O' removes a operator hold.
Sun Grid Engine managers can assign and remove all hold
types, Sun Grid Engine operators can assign and remove
user and operator holds, and users can only assign or
remove user holds.
In the case of _qsub_ only user holds can be placed on a
job and thus only the first form of the option with the
-h switch alone is allowed. As opposed to this, _qalter_
requires the second form described above.
An alternate means to assign hold is provided by the
**[qhold(1)](../htmlman1/qhold.html?pathrev=V62u5%5FTAG)** facility.
If the job is a array job (see the -t option below),
all tasks specified via -t are affected by the -h
operation simultaneously.
_Qalter_ allows changing this option even while the job
executes. The modified parameter will only be in effect
after a restart or migration of the job, however.
If this option is specified with _qsub_ or during the
submission of a job in _qmon_ then the parameter h with
the value u will be passed to the defined JSV instances
indicating that the job will be in user hold after the
submission finishes. (see -jsv option below or find
more information concerning JSV in **[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-help
Prints a listing of all options.
-hold_jid wc_job_list
Available for _qsub_, _qrsh_, and _qalter_ only. See
**[sge_types(1)](../htmlman1/sge%5Ftypes.html?pathrev=V62u5%5FTAG)**. for wc_job_list definition.
Defines or redefines the job dependency list of the
submitted job. A reference by job name or pattern is
only accepted if the referenced job is owned by the
same user as the referring job. The submitted job is
not eligible for execution unless all jobs referenced
in the comma-separated job id and/or job name list have
completed. If any of the referenced jobs exits with
exit code 100, the submitted job will remain ineligible
for execution.
With the help of job names or regular pattern one can
specify a job dependency on multiple jobs satisfying
the regular pattern or on all jobs with the requested
name. The name dependencies are resolved at submit time
and can only be changed via qalter. New jobs or name
changes of other jobs will not be taken into account.
_Qalter_ allows changing this option even while the job
executes. The modified parameter will only be in effect
after a restart or migration of the job, however.
If this option or a corresponding value in _qmon_ is
specified then this value will be passed to defined JSV
instances as parameter with the name hold_jid. (see
-jsv option below or find more information concerning
JSV in **[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-hold_jid_ad wc_job_list
Available for _qsub_, _qrsh_, and _qalter_ only. See
**[sge_types(1)](../htmlman1/sge%5Ftypes.html?pathrev=V62u5%5FTAG)**. for wc_job_list definition.
Defines or redefines the job array dependency list of
the submitted job. A reference by job name or pattern
is only accepted if the referenced job is owned by the
same user as the referring job. Each sub-task of the
submitted job is not eligible for execution unless the
corresponding sub-tasks of all jobs referenced in the
comma-separated job id and/or job name list have com-
pleted. If any array task of the referenced jobs exits
with exit code 100, the dependent tasks of the submit-
ted job will remain ineligible for execution.
With the help of job names or regular pattern one can
specify a job dependency on multiple jobs satisfying
the regular pattern or on all jobs with the requested
name. The name dependencies are resolved at submit time
and can only be changed via qalter. New jobs or name
changes of other jobs will not be taken into account.
If either the submitted job or any job in wc_job_list
are not array jobs with the same range of sub-tasks
(see -t option below), the request list will be
rejected and the job create or modify operation will
error.
_qalter_ allows changing this option even while the job
executes. The modified parameter will only be in effect
after a restart or migration of the job, however.
If this option or a corresponding value in _qmon_ is
specified then this value will be passed to defined JSV
instances as parameter with the name hold_jid_ad. (see
-jsv option below or find more information concerning
JSV in **[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-i [[hostname]:]file,...
Available for _qsub_, and _qalter_ only.
Defines or redefines the file used for the standard
input stream of the job. If the _file_ constitutes an
absolute filename, the input-path attribute of the job
is set to path, including the hostname. If the path
name is relative, Sun Grid Engine expands path either
with the current working directory path (if the -cwd
switch (see above) is also specified) or with the home
directory path. If hostname is present, the standard
input stream will be placed in the corresponding loca-
tion only if the job runs on the specified host. If the
path contains a ":" without a hostname, a leading ":"
has to be specified.
By default /dev/null is the input stream for the job.
It is possible to use certain pseudo variables, whose
values will be expanded at runtime of the job and will
be used to express the standard input stream as
described in the -_e_ option for the standard error
stream.
_Qalter_ allows changing this option even while the job
executes. The modified parameter will only be in effect
after a restart or migration of the job, however.
If this option or a corresponding value in _qmon_ is
specified then this value will be passed to defined JSV
instances as parameter with the name i. (see -jsv
option below or find more information concerning JSV in
**[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-inherit
Available only for _qrsh_ and **[qmake(1)](../htmlman1/qmake.html?pathrev=V62u5%5FTAG)**.
_qrsh_ allows the user to start a task in an already
scheduled parallel job. The option -inherit tells _qrsh_
to read a job id from the environment variable JOB_ID
and start the specified command as a task in this job.
Please note that in this case, the hostname of the host
where the command will be executed must precede the
command to execute; the syntax changes to
qrsh -inherit [ other options ] hostname command [
command_args ]
Note also, that in combination with -inherit, most
other command line options will be ignored. Only the
options -verbose, -v and -V will be interpreted. As a
replacement to option -cwd please use -v PWD.
Usually a task should have the same environment
(including the current working directory) as the
corresponding job, so specifying the option -V should
be suitable for most applications.
_Note_: If in your system the qmaster tcp port is not
configured as a service, but rather via the environment
variable SGE_QMASTER_PORT, make sure that this variable
is set in the environment when calling _qrsh_ or _qmake_
with the -inherit option. If you call _qrsh_ or _qmake_
with the -inherit option from within a job script,
export SGE_QMASTER_PORT with the option "-v
SGE_QMASTER_PORT" either as a command argument or an
embedded directive.
This parameter is not available in the JSV context.
(see -jsv option below or find more information con-
cerning JSV in **[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-j y[es]|n[o]
Available for _qsub_, _qsh_, _qrsh_, _qlogin_ and _qalter_ only.
Specifies whether or not the standard error stream of
the job is merged into the standard output stream.
If both the -j y and the -e options are present, Sun
Grid Engine sets but ignores the error-path attribute.
_Qalter_ allows changing this option even while the job
executes. The modified parameter will only be in effect
after a restart or migration of the job, however.
The value specified with this option or the correspond-
ing value specified in _qmon_ will only be passed to
defined JSV instances if the value is _yes_. The name of
the parameter will be j. The value will be y also when
then long form yes was specified during submission.
(see -jsv option below or find more information con-
cerning JSV in **[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-js job_share
Available for _qsub_, _qsh_, _qrsh_, _qlogin_ and _qalter_ only.
Defines or redefines the job share of the job relative
to other jobs. Job share is an unsigned integer value.
The default job share value for jobs is 0.
The job share influences the Share Tree Policy and the
Functional Policy. It has no effect on the Urgency and
Override Policies (see **[share_tree(5)](../htmlman5/share%5Ftree.html?pathrev=V62u5%5FTAG)**, **[sched_conf(5)](../htmlman5/sched%5Fconf.html?pathrev=V62u5%5FTAG)** and
the _Sun_ _Grid_ _Engine_ _Installation_ _and_ _Administration_
_Guide_ for further information on the resource manage-
ment policies supported by Sun Grid Engine).
In case of the Share Tree Policy, users can distribute
the tickets to which they are currently entitled among
their jobs using different shares assigned via -js. If
all jobs have the same job share value, the tickets are
distributed evenly. Otherwise, jobs receive tickets
relative to the different job shares. Job shares are
treated like an additional level in the share tree in
the latter case.
In connection with the Functional Policy, the job share
can be used to weight jobs within the functional job
category. Tickets are distributed relative to any
uneven job share distribution treated as a virtual
share distribution level underneath the functional job
category.
If both the Share Tree and the Functional Policy are
active, the job shares will have an effect in both pol-
icies, and the tickets independently derived in each of
them are added to the total number of tickets for each
job.
If this option or a corresponding value in _qmon_ is
specified then this value will be passed to defined JSV
instances as parameter with the name js. (see -jsv
option below or find more information concerning JSV in
**[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-jsv jsv_url
Available for _qsub_, _qsh_, _qrsh_ and _qlogin_ only.
Defines a client JSV instance which will be executed to
verify the job specification before the job is sent to
qmaster.
In contrast to other options this switch will not be
overwritten if it is also used in sge_request files.
Instead all specified JSV instances will be executed to
verify the job to be submitted.
The JSV instance which is directly passed with the com-
mandline of a client is executed as first to verify the
job specification. After that the JSV instance which
might have been defined in various sge_request files
will be triggered to check the job. Find more details
in man page **[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)** and **[sge_request(5)](../htmlman5/sge%5Frequest.html?pathrev=V62u5%5FTAG)**.
The syntax of the jsv_url is specified in
**[sge_types(1)](../htmlman1/sge%5Ftypes.html?pathrev=V62u5%5FTAG)**.()
-l resource=value,...
Available for _qsub_, _qsh_, _qrsh_, _qlogin_ and _qalter_ only.
Launch the job in a Sun Grid Engine queue meeting the
given resource request list. In case of _qalter_ the
previous definition is replaced by the specified one.
**[complex(5)](../htmlman5/complex.html?pathrev=V62u5%5FTAG)** describes how a list of available resources
and their associated valid value specifiers can be
obtained.
There may be multiple -l switches in a single command.
You may request multiple -l options to be soft or hard
both in the same command line. In case of a serial job
multiple -l switches refine the definition for the
sought queue.
_Qalter_ allows changing the value of this option even
while the job is running, but only if the initial list
of resources does not contain a resource that is marked
as consumable. However the modification will only be
effective after a restart or migration of the job.
If this option or a corresponding value in _qmon_ is
specified the these hard and soft resource requirements
will be passed to defined JSV instances as parameter
with the names l_hard and l_soft. If regular expres-
sions will be used for resource requests, then these
expressions will be passed as they are. Also shortcut
names will not be expanded. (see -jsv option above or
find more information concerning JSV in **[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-m b|e|a|s|n,...
Available for _qsub_, _qsh_, _qrsh_, _qlogin_ and _qalter_ only.
Defines or redefines under which circumstances mail is
to be sent to the job owner or to the users defined
with the -M option described below. The option argu-
ments have the following meaning:
`b' Mail is sent at the beginning of the job.
`e' Mail is sent at the end of the job.
`a' Mail is sent when the job is aborted or
rescheduled.
`s' Mail is sent when the job is suspended.
`n' No mail is sent.
Currently no mail is sent when a job is suspended.
_Qalter_ allows changing the b, e, and a option arguments
even while the job executes. The modification of the b
option argument will only be in effect after a restart
or migration of the job, however.
If this option or a corresponding value in _qmon_ is
specified then this value will be passed to defined JSV
instances as parameter with the name m. (see -jsv
option above or find more information concerning JSV in
-M user[@host],...
Available for _qsub_, _qsh_, _qrsh_, _qlogin_ and _qalter_ only.
Defines or redefines the list of users to which the
server that executes the job has to send mail, if the
server sends mail about the job. Default is the job
owner at the originating host.
_Qalter_ allows changing this option even while the job
executes.
If this option or a corresponding value in _qmon_ is
specified then this value will be passed to defined JSV
instances as parameter with the name M. (see -jsv
option above or find more information concerning JSV in
**[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-masterq wc_queue_list
Available for _qsub_, _qrsh_, _qsh_, _qlogin_ and _qalter_. Only
meaningful for parallel jobs, i.e. together with the
-pe option.
Defines or redefines a list of cluster queues, queue
domains and queue instances which may be used to become
the so called _master_ _queue_ of this parallel job. A more
detailed description of _wc__ _queue__ _list_ can be found in
**[sge_types(1)](../htmlman1/sge%5Ftypes.html?pathrev=V62u5%5FTAG)**. The _master_ _queue_ is defined as the queue
where the parallel job is started. The other queues to
which the parallel job spawns tasks are called _slave_
_queues_. A parallel job only has one _master_ _queue_.
This parameter has all the properties of a resource
request and will be merged with requirements derived
from the -l option described above.
_Qalter_ allows changing this option even while the job
executes. The modified parameter will only be in effect
after a restart or migration of the job, however.
If this option or a corresponding value in _qmon_ is
specified the this hard resource requirement will be
passed to defined JSV instances as parameter with the
name masterq. (see -jsv option above or find more
information concerning JSV in **[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-notify
Available for _qsub_, _qrsh_ (with command) and _qalter_
only.
This flag, when set causes Sun Grid Engine to send
"warning" signals to a running job prior to sending the
signals themselves. If a SIGSTOP is pending, the job
will receive a SIGUSR1 several seconds before the SIG-
STOP. If a SIGKILL is pending, the job will receive a
SIGUSR2 several seconds before the SIGKILL. This
option provides the running job, before receiving the
SIGSTOP or SIGKILL, a configured time interval to do
e.g. cleanup operations. The amount of time delay is
controlled by the notify parameter in each queue confi-
guration (see **[queue_conf(5)](../htmlman5/queue%5Fconf.html?pathrev=V62u5%5FTAG)**).
Note that the Linux operating system "misused" the user
signals SIGUSR1 and SIGUSR2 in some early Posix thread
implementations. You might not want to use the -notify
option if you are running multi-threaded applications
in your jobs under Linux, particularly on 2.0 or ear-
lier kernels.
_Qalter_ allows changing this option even while the job
executes.
Only if this option is used the parameter named notify
with the value y will be passed to defined JSV
instances. (see -jsv option above or find more informa-
tion concerning JSV in **[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-now y[es]|n[o]
Available for _qsub_, _qsh_, _qlogin_ and _qrsh_.
-now y tries to start the job immediately or not at
all. The command returns 0 on success, or 1 on failure
(also if the job could not be scheduled immediately).
For array jobs submitted with the -now option, if all
tasks cannot be immediately scheduled, no tasks are
scheduled. -now y is default for _qsh_, _qlogin_ and _qrsh_
With the -now n option, the job will be put into the
pending queue if it cannot be executed immediately.
-now n is default for _qsub_.
The value specified with this option or the correspond-
ing value specified in _qmon_ will only be passed to
defined JSV instances if the value is _yes_. The name of
the parameter will be now. The value will be y also
when then long form yes was specified during submis-
sion. (see -jsv option above or find more information
concerning JSV in **[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-N name
Available for _qsub_, _qsh_, _qrsh_, _qlogin_ and _qalter_ only.
The name of the job. The name should follow the "name"
definition in **[sge_types(1)](../htmlman1/sge%5Ftypes.html?pathrev=V62u5%5FTAG)**. Invalid job names will be
denied at submit time.
If the -N option is not present, Sun Grid Engine
assigns the name of the job script to the job after any
directory pathname has been removed from the script-
name. If the script is read from standard input, the
job name defaults to STDIN.
In the case of _qsh_ or _qlogin_ with the -N option is
absent, the string `INTERACT' is assigned to the job.
In the case of _qrsh_ if the -N option is absent, the
resulting job name is determined from the qrsh command
line by using the argument string up to the first
occurrence of a semicolon or whitespace and removing
the directory pathname.
_Qalter_ allows changing this option even while the job
executes.
The value specified with this option or the correspond-
ing value specified in _qmon_ will be passed to defined
JSV instances as parameter with the name _N_. (see -jsv
option above or find more information concerning JSV in
**[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-noshell
Available only for _qrsh_ with a command line.
Do not start the command line given to _qrsh_ in a user's
login shell, i.e. execute it without the wrapping
shell.
This option can be used to speed up execution as some
overhead, like the shell startup and sourcing the shell
resource files, is avoided.
This option can only be used if no shell-specific com-
mand line parsing is required. If the command line con-
tains shell syntax like environment variable substitu-
tion or (back) quoting, a shell must be started. In
this case, either do not use the -noshell option or
include the shell call in the command line.
Example:
qrsh echo '$HOSTNAME'
Alternative call with the -noshell option
qrsh -noshell /bin/tcsh -f -c 'echo $HOSTNAME'
-nostdin
Available only for _qrsh_.
Suppress the input stream STDIN - _qrsh_ will pass the
option -n to the **[rsh(1)](../htmlman1/rsh.html?pathrev=V62u5%5FTAG)** command. This is especially
useful, if multiple tasks are executed in parallel
using _qrsh_, e.g. in a **[make(1)](../htmlman1/make.html?pathrev=V62u5%5FTAG)** process - it would be
undefined, which process would get the input.
-o [[hostname]:]path,...
Available for _qsub_, _qsh_, _qrsh_, _qlogin_ and _qalter_ only.
The path used for the standard output stream of the
job. The path is handled as described in the -e option
for the standard error stream.
By default the file name for standard output has the
form _job__ _name_.o_job__ _id_ and _job__ _name_.o_job__ _id_.task_id for
array job tasks (see -t option below).
_Qalter_ allows changing this option even while the job
executes. The modified parameter will only be in effect
after a restart or migration of the job, however.
If this option or a corresponding value in _qmon_ is
specified then this value will be passed to defined JSV
instances as parameter with the name o. (see -jsv
option above or find more information concerning JSV in
**[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-ot override_tickets
Available for _qalter_ only.
Changes the number of override tickets for the speci-
fied job. Requires manager/operator privileges.
-P project_name
Available for _qsub_, _qsh_, _qrsh_, _qlogin_ and _qalter_ only.
Specifies the project to which this job is assigned.
The administrator needs to give permission to indivi-
dual users to submit jobs to a specific project. (see
-aprj option to **[qconf(1)](../htmlman1/qconf.html?pathrev=V62u5%5FTAG)**).
If this option or a corresponding value in _qmon_ is
specified then this value will be passed to defined JSV
instances as parameter with the name ot. (see -jsv
option above or find more information concerning JSV in
**[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-p priority
Available for _qsub_, _qsh_, _qrsh_, _qlogin_ and _qalter_ only.
Defines or redefines the priority of the job relative
to other jobs. Priority is an integer in the range
-1023 to 1024. The default priority value for jobs is
0.
Users may only decrease the priority of their jobs.
Sun Grid Engine managers and administrators may also
increase the priority associated with jobs. If a pend-
ing job has higher priority, it is earlier eligible for
being dispatched by the Sun Grid Engine scheduler.
If this option or a corresponding value in _qmon_ is
specified and the priority is not 0 then this value
will be passed to defined JSV instances as parameter
with the name p. (see -jsv option above or find more
information concerning JSV in **[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-pe parallel_environment n[-[m]]|[-]m,...
Available for _qsub_, _qsh_, _qrsh_, _qlogin_ and _qalter_ only.
Parallel programming environment (PE) to instantiate.
For more detail about PEs, please see the **[sge_types(1)](../htmlman1/sge%5Ftypes.html?pathrev=V62u5%5FTAG)**.
_Qalter_ allows changing this option even while the job
executes. The modified parameter will only be in effect
after a restart or migration of the job, however.
If this option or a corresponding value in _qmon_ is
specified then the parameters pe_name, pe_min and
pe_max will be passed to configured JSV instances where
pe_name will be the name of the parallel environment
and the values pe_min and pe_max represent the values n
and m which have been provided with the -pe option. A
missing specification of m will be expanded as value
9999999 in JSV scripts and it represents the value
infinity. (see -jsv option above or find more informa-
tion concerning JSV in **[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-pty y[es]|n[o]
Available for _qrsh_ and _qlogin_ only.
-pty yes enforces the job to be started in a pseudo
terminal (pty). If no pty is available, the job start
fails. -pty no enforces the job to be started without
a pty. By default, _qrsh_ _without_ _a_ _command_ and _qlogin_
start the job in a pty, _qrsh_ _with_ _a_ _command_ starts the
job without a pty.
This parameter is not available in the JSV context.
(see -jsv option above or find more information con-
cerning JSV in **[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-q wc_queue_list
Available for _qsub_, _qrsh_, _qsh_, _qlogin_ and _qalter_.
Defines or redefines a list of cluster queues, queue
domains or queue instances which may be used to execute
this job. Please find a description of _wc__ _queue__ _list_ in
**[sge_types(1)](../htmlman1/sge%5Ftypes.html?pathrev=V62u5%5FTAG)**. This parameter has all the properties of
a resource request and will be merged with requirements
derived from the -l option described above.
_Qalter_ allows changing this option even while the job
executes. The modified parameter will only be in effect
after a restart or migration of the job, however.
If this option or a corresponding value in _qmon_ is
specified the these hard and soft resource requirements
will be passed to defined JSV instances as parameters
with the names q_hard and q_soft. If regular expres-
sions will be used for resource requests, then these
expressions will be passed as they are. Also shortcut
names will not be expanded. (see -jsv option above or
find more information concerning JSV in **[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-R y[es]|n[o]
Available for _qsub_, _qrsh_, _qsh_, _qlogin_ and _qalter_.
Indicates whether a reservation for this job should be
done. Reservation is never done for immediate jobs,
i.e. jobs submitted using the -now yes option. Please
note that regardless of the reservation request, job
reservation might be disabled using max_reservation in
**[sched_conf(5)](../htmlman5/sched%5Fconf.html?pathrev=V62u5%5FTAG)** and might be limited only to a certain
number of high priority jobs.
By default jobs are submitted with the -R n option.
The value specified with this option or the correspond-
ing value specified in _qmon_ will only be passed to
defined JSV instances if the value is _yes_. The name of
the parameter will be R. The value will be y also when
then long form yes was specified during submission.
(see -jsv option above or find more information con-
cerning JSV in **[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-r y[es]|n[o]
Available for _qsub_ and _qalter_ only.
Identifies the ability of a job to be rerun or not. If
the value of -r is 'yes', the job will be rerun if the
job was aborted without leaving a consistent exit
state. (This is typically the case if the node on
which the job is running crashes). If -r is 'no', the
job will not be rerun under any circumstances.
Interactive jobs submitted with _qsh_, _qrsh_ or _qlogin_ are
not rerunnable.
_Qalter_ allows changing this option even while the job
executes.
The value specified with this option or the correspond-
ing value specified in _qmon_ will only be passed to
defined JSV instances if the value is _yes_. The name of
the parameter will be r. The value will be y also when
then long form yes was specified during submission.
(see -jsv option above or find more information con-
cerning JSV in **[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-sc variable[=value],...
Available for _qsub_, _qsh_, _qrsh_, _qlogin_ and _qalter_ only.
Sets the given name/value pairs as the job's context.
Value may be omitted. Sun Grid Engine replaces the
job's previously defined context with the one given as
the argument. Multiple -ac, -dc, and -sc options may
be given. The order is important.
Contexts provide a way to dynamically attach and remove
meta-information to and from a job. The context vari-
ables are not passed to the job's execution context in
its environment.
_Qalter_ allows changing this option even while the job
executes.
The outcome of the evaluation of all -ac, -dc, and -sc
options or corresponding values in _qmon_ is passed to
defined JSV instances as parameter with the name ac.
(see -jsv option above or find more information con-
cerning JSV in **[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-shell y[es]|n[o]
Available only for _qsub_.
-shell n causes qsub to execute the command line
directly, as if by **[exec(2)](../htmlman2/exec.html?pathrev=V62u5%5FTAG)**. No command shell will be
executed for the job. This option only applies when -b
y is also used. Without -b y, -shell n has no effect.
This option can be used to speed up execution as some
overhead, like the shell startup and sourcing the shell
resource files is avoided.
This option can only be used if no shell-specific com-
mand line parsing is required. If the command line con-
tains shell syntax, like environment variable substitu-
tion or (back) quoting, a shell must be started. In
this case either do not use the -shell n option or exe-
cute the shell as the command line and pass the path to
the executable as a parameter.
If a job executed with the -shell n option fails due to
a user error, such as an invalid path to the execut-
able, the job will enter the error state.
-shell y cancels the effect of a previous -shell n.
Otherwise, it has no effect.
See -b and -noshell for more information.
The value specified with this option or the correspond-
ing value specified in _qmon_ will only be passed to
defined JSV instances if the value is _yes_. The name of
the parameter will be shell. The value will be y also
when then long form yes was specified during submis-
sion. (see -jsv option above or find more information
concerning JSV in **[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-soft
Available for _qsub_, _qsh_, _qrsh_, _qlogin_ and _qalter_ only.
Signifies that all resource requirements following in
the command line will be soft requirements and are to
be filled on an "as available" basis.
As Sun Grid Engine scans the command line and script
file for Sun Grid Engine options and parameters, it
builds a list of resources required by the job. All
such resource requests are considered as absolutely
essential for the job to commence. If the -soft option
is encountered during the scan then all following
resources are designated as "soft requirements" for
execution, or "nice-to-have, but not essential". If the
-hard flag (see above) is encountered at a later stage
of the scan, all resource requests following it once
again become "essential". The -hard and -soft options
in effect act as "toggles" during the scan.
If this option or a corresponding value in _qmon_ is
specified then the corresponding -q and -l resource
requirements will be passed to defined JSV instances as
parameter with the names q_soft and l_soft. Find for
information in the sections describing -q and -l. (see
-jsv option above or find more information concerning
JSV in **[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-sync y[es]|n[o]
Available for _qsub_.
-sync y causes _qsub_ to wait for the job to complete
before exiting. If the job completes successfully,
_qsub_'_s_ exit code will be that of the completed job. If
the job fails to complete successfully, _qsub_ will print
out a error message indicating why the job failed and
will have an exit code of 1. If _qsub_ is interrupted,
e.g. with CTRL-C, before the job completes, the job
will be canceled.
With the -sync n option, _qsub_ will exit with an exit
code of 0 as soon as the job is submitted successfully.
-sync n is default for _qsub_.
If -sync y is used in conjunction with -now y, _qsub_
will behave as though only -now y were given until the
job has been successfully scheduled, after which time
_qsub_ will behave as though only -sync y were given.
If -sync y is used in conjunction with -t n[-m[:i]],
_qsub_ will wait for all the job's tasks to complete
before exiting. If all the job's tasks complete suc-
cessfully, _qsub_'_s_ exit code will be that of the first
completed job tasks with a non-zero exit code, or 0 if
all job tasks exited with an exit code of 0. If any of
the job's tasks fail to complete successfully, _qsub_
will print out an error message indicating why the job
task(s) failed and will have an exit code of 1. If
_qsub_ is interrupted, e.g. with CTRL-C, before the job
completes, all of the job's tasks will be canceled.
Information that this switch was specified during sub-
mission is not available in the JSV context. (see -jsv
option above or find more information concerning JSV in
**[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-S [[hostname]:]pathname,...
Available for _qsub_, _qsh_ and _qalter_.
Specifies the interpreting shell for the job. Only one
pathname component without a host specifier is valid
and only one path name for a given host is allowed.
Shell paths with host assignments define the interpret-
ing shell for the job if the host is the execution
host. The shell path without host specification is used
if the execution host matches none of the hosts in the
list.
Furthermore, the pathname can be constructed with
pseudo environment variables as described for the -e
option above.
In the case of _qsh_ the specified shell path is used to
execute the corresponding command interpreter in the
**[xterm(1)](../htmlman1/xterm.html?pathrev=V62u5%5FTAG)** (via its -_e_ option) started on behalf of the
interactive job. _Qalter_ allows changing this option
even while the job executes. The modified parameter
will only be in effect after a restart or migration of
the job, however.
If this option or a corresponding value in _qmon_ is
specified then this value will be passed to defined JSV
instances as parameter with the name S. (see -jsv
option above or find more information concerning JSV in
**[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-t n[-m[:s]]
Available for _qsub_ and _qalter_ only.
Submits a so called _Array_ _Job_, i.e. an array of identi-
cal tasks being differentiated only by an index number
and being treated by Sun Grid Engine almost like a
series of jobs. The option argument to -t specifies the
number of array job tasks and the index number which
will be associated with the tasks. The index numbers
will be exported to the job tasks via the environment
variable SGE_TASK_ID. The option arguments n, m and s
will be available through the environment variables
SGE_TASK_FIRST, SGE_TASK_LAST and SGE_TASK_STEPSIZE.
Following restrictions apply to the values n and m:
1 <= n <= MIN(2^31-1, max_aj_tasks)
1 <= m <= MIN(2^31-1, max_aj_tasks)
n <= m
_max__ _aj__ _tasks_ is defined in the cluster configuration
(see **[sge_conf(5)](../htmlman5/sge%5Fconf.html?pathrev=V62u5%5FTAG)**)
The task id range specified in the option argument may
be a single number, a simple range of the form n-m or a
range with a step size. Hence, the task id range speci-
fied by 2-10:2 would result in the task id indexes 2,
4, 6, 8, and 10, for a total of 5 identical tasks, each
with the environment variable SGE_TASK_ID containing
one of the 5 index numbers.
All array job tasks inherit the same resource requests
and attribute definitions as specified in the _qsub_ or
_qalter_ command line, except for the -t option. The
tasks are scheduled independently and, provided enough
resources exist, concurrently, very much like separate
jobs. However, an array job or a sub-array there of
can be accessed as a single unit by commands like
**[qmod(1)](../htmlman1/qmod.html?pathrev=V62u5%5FTAG)** or **[qdel(1)](../htmlman1/qdel.html?pathrev=V62u5%5FTAG)**. See the corresponding manual pages
for further detail.
Array jobs are commonly used to execute the same type
of operation on varying input data sets correlated with
the task index number. The number of tasks in a array
job is unlimited.
STDOUT and STDERR of array job tasks will be written
into different files with the default location
<jobname>.['e'|'o']<job_id>'.'<task_id>
In order to change this default, the -e and -o options
(see above) can be used together with the pseudo
environment variables <span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mi>H</mi><mi>O</mi><mi>M</mi><mi>E</mi><mo separator="true">,</mo></mrow><annotation encoding="application/x-tex">HOME, </annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:0.8778em;vertical-align:-0.1944em;"></span><span class="mord mathnormal" style="margin-right:0.08125em;">H</span><span class="mord mathnormal" style="margin-right:0.05764em;">OME</span><span class="mpunct">,</span></span></span></span>USER, <span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mi>J</mi><mi>O</mi><msub><mi>B</mi><mi>I</mi></msub><mi>D</mi><mo separator="true">,</mo></mrow><annotation encoding="application/x-tex">JOB_ID, </annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:0.8778em;vertical-align:-0.1944em;"></span><span class="mord mathnormal" style="margin-right:0.09618em;">J</span><span class="mord mathnormal" style="margin-right:0.02778em;">O</span><span class="mord"><span class="mord mathnormal" style="margin-right:0.05017em;">B</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3283em;"><span style="top:-2.55em;margin-left:-0.0502em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mathnormal mtight" style="margin-right:0.07847em;">I</span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span><span class="mord mathnormal" style="margin-right:0.02778em;">D</span><span class="mpunct">,</span></span></span></span>JOB_NAME,
<span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mi>H</mi><mi>O</mi><mi>S</mi><mi>T</mi><mi>N</mi><mi>A</mi><mi>M</mi><mi>E</mi><mo separator="true">,</mo><mi>a</mi><mi>n</mi><mi>d</mi></mrow><annotation encoding="application/x-tex">HOSTNAME, and </annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:0.8889em;vertical-align:-0.1944em;"></span><span class="mord mathnormal" style="margin-right:0.08125em;">H</span><span class="mord mathnormal" style="margin-right:0.10903em;">OSTN</span><span class="mord mathnormal">A</span><span class="mord mathnormal" style="margin-right:0.05764em;">ME</span><span class="mpunct">,</span><span class="mspace" style="margin-right:0.1667em;"></span><span class="mord mathnormal">an</span><span class="mord mathnormal">d</span></span></span></span>SGE_TASK_ID.
Note, that you can use the output redirection to divert
the output of all tasks into the same file, but the
result of this is undefined.
If this option or a corresponding value in _qmon_ is
specified then this value will be passed to defined JSV
instances as parameters with the name t_min, t_max and
t_step (see -jsv option above or find more information
concerning JSV in **[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-tc max_running_tasks
-allow users to limit concurrent array job task execu-
tion. Parameter max_running_tasks specifies maximum
number of simultaneously running tasks. For example we
have running SGE with 10 free slots. We call qsub -t
1-100 -tc 2 jobscript. Then only 2 tasks will be
scheduled to run even when 8 slots are free.
-terse
Available for _qsub_ only.
-terse causes the _qsub_ to display only the job-id of
the job being submitted rather than the regular "Your
job ..." string. In case of an error the error is
reported on stderr as usual.
This can be helpful for scripts which need to parse
_qsub_ output to get the job-id.
Information that this switch was specified during sub-
mission is not available in the JSV context. (see -jsv
option above or find more information concerning JSV in
**[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-u username,...
Available for _qalter_ only. Changes are only made on
those jobs which were submitted by users specified in
the list of usernames. For managers it is possible to
use the qalter -u '*' command to modify all jobs of all
users.
If you use the -u switch it is not permitted to specify
an additional _wc__ _job__ _range__ _list_.
-v variable[=value],...
Available for _qsub_, _qrsh_ (with command argument) and
_qalter_.
Defines or redefines the environment variables to be
exported to the execution context of the job. If the
-v option is present Sun Grid Engine will add the
environment variables defined as arguments to the
switch and, optionally, values of specified variables,
to the execution context of the job.
_Qalter_ allows changing this option even while the job
executes. The modified parameter will only be in effect
after a restart or migration of the job, however.
All environment variables specified with -v, -V or the
DISPLAY variable provided with -display will be
exported to the defined JSV instances only optionally
when this is requested explicitly during the job sub-
mission verification. (see -jsv option above or find
more information concerning JSV in **[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-verbose
Available only for _qrsh_ and **[qmake(1)](../htmlman1/qmake.html?pathrev=V62u5%5FTAG)**.
Unlike _qsh_ and _qlogin_, _qrsh_ does not output any infor-
mational messages while establishing the session,
compliant with the standard **[rsh(1)](../htmlman1/rsh.html?pathrev=V62u5%5FTAG)** and **[rlogin(1)](../htmlman1/rlogin.html?pathrev=V62u5%5FTAG)** system
calls. If the option -verbose is set, _qrsh_ behaves
like the _qsh_ and _qlogin_ commands, printing information
about the process of establishing the **[rsh(1)](../htmlman1/rsh.html?pathrev=V62u5%5FTAG)** or _rlo-_
**[gin(1)](../htmlman1/gin.html?pathrev=V62u5%5FTAG)** session.
-verify
Available for _qsub_, _qsh_, _qrsh_, _qlogin_ and _qalter_.
Instead of submitting a job, prints detailed informa-
tion about the would-be job as though **[qstat(1)](../htmlman1/qstat.html?pathrev=V62u5%5FTAG)** -j were
used, including the effects of command-line parameters
and the external environment.
-V Available for _qsub_, _qsh_, _qrsh_ _with_ _command_ and _qalter_.
Specifies that all environment variables active within
the _qsub_ utility be exported to the context of the job.
All environment variables specified with -v, -V or the
DISPLAY variable provided with -display will be
exported to the defined JSV instances only optionally
when this is requested explicitly during the job sub-
mission verification. (see -jsv option above or find
more information concerning JSV in **[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
-w e|w|n|p|v
Available for _qsub_, _qsh_, _qrsh_, _qlogin_ and _qalter_.
Specifies a validation level applied to the job to be
submitted (_qsub_, _qlogin_, and _qsh_) or the specified
queued job (_qalter_). The information displayed indi-
cates whether the job can possibly be scheduled assum-
ing an empty system with no other jobs. Resource
requests exceeding the configured maximal thresholds or
requesting unavailable resource attributes are possible
causes for jobs to fail this validation.
The specifiers e, w, n and v define the following vali-
dation modes:
`e' error - jobs with invalid requests will be
rejected.
`w' warning - only a warning will be displayed
for invalid requests.
`n' none - switches off validation; the default for
_qsub_, _qalter_, _qrsh_, _qsh_
and _qlogin_.
`p' poke - does not submit the job but prints a
validation report based on a cluster as is with
all resource utilizations in place.
`v' verify - does not submit the job but prints a
validation report based on an empty cluster.
Note, that the necessary checks are performance consum-
ing and hence the checking is switched off by default.
It should also be noted that load values are not taken
into account with the verification since they are
assumed to be too volatile. To cause -w e verification
to be passed at submission time, it is possible to
specify non-volatile values (non-consumables) or max-
imum values (consumables) in complex_values.
-wd working_dir
Available for _qsub_, _qsh_, _qrsh_ and _qalter_ only.
Execute the job from the directory specified in
working_dir. This switch will activate Sun Grid
Engine's path aliasing facility, if the corresponding
configuration files are present (see **[sge_aliases(5)](../htmlman5/sge%5Faliases.html?pathrev=V62u5%5FTAG)**).
_Qalter_ allows changing this option even while the job
executes. The modified parameter will only be in effect
after a restart or migration of the job, however. The
parameter value will be available in defined JSV
instances as parameter with the name cwd (see -cwd
switch above or find more information concerning JSV in
**[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
command
Available for _qsub_ and _qrsh_ only.
The job's scriptfile or binary. If not present or if
the operand is the single-character string '-', _qsub_
reads the script from standard input.
The command will be available in defined JSV instances
as parameter with the name CMDNAME (see -jsv option
above or find more information concerning JSV in
**[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
command_args
Available for _qsub_, _qrsh_ and _qalter_ only.
Arguments to the job. Not valid if the script is
entered from standard input.
_Qalter_ allows changing this option even while the job
executes. The modified parameter will only be in effect
after a restart or migration of the job, however.
The number of command arguments is provided to config-
ured JSV instances as parameter with the name CMDARGS.
Also the argument values can by accessed. Argument
names have the format CMDARG<number> where <number> is
a integer between 0 and CMDARGS - 1. (see -jsv option
above or find more information concerning JSV in
**[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
xterm_args
Available for _qsh_ only.
Arguments to the **[xterm(1)](../htmlman1/xterm.html?pathrev=V62u5%5FTAG)** executable, as defined in the
configuration. For details, refer to **[sge_conf(5)](../htmlman5/sge%5Fconf.html?pathrev=V62u5%5FTAG)**).
Information concerning xterm_args will be available in
JSV context as parameters with the name CMDARGS and
CMDARG<number>. Find more information above in section
command_args. (see -jsv option above or find more
information concerning JSV in **[jsv(1)](../htmlman1/jsv.html?pathrev=V62u5%5FTAG)**)
ENVIRONMENTAL VARIABLES SGE_ROOT Specifies the location of the Sun Grid Engine standard configuration files.
SGE_CELL If set, specifies the default Sun Grid Engine
cell. To address a Sun Grid Engine cell _qsub_,
_qsh_, _qlogin_ or _qalter_ use (in the order of
precedence):
The name of the cell specified in the
environment variable SGE_CELL, if it is
set.
The name of the default cell, i.e.
default.
SGE_DEBUG_LEVEL
If set, specifies that debug information
should be written to stderr. In addition the
level of detail in which debug information is
generated is defined.
SGE_QMASTER_PORT
If set, specifies the tcp port on which
**[sge_qmaster(8)](../htmlman8/sge%5Fqmaster.html?pathrev=V62u5%5FTAG)** is expected to listen for com-
munication requests. Most installations will
use a services map entry for the service
"sge_qmaster" instead to define that port.
DISPLAY For _qsh_ jobs the DISPLAY has to be specified
at job submission. If the DISPLAY is not set
by using the -display or the -v switch, the
contents of the DISPLAY environment variable
are used as default.
In addition to those environment variables specified to be
exported to the job via the -v or the -V option (see above)
_qsub_, _qsh_, and _qlogin_ add the following variables with the
indicated values to the variable list:
SGE_O_HOME the home directory of the submitting client.
SGE_O_HOST the name of the host on which the submitting
client is running.
SGE_O_LOGNAME the LOGNAME of the submitting client.
SGE_O_MAIL the MAIL of the submitting client. This is
the mail directory of the submitting client.
SGE_O_PATH the executable search path of the submitting
client.
SGE_O_SHELL the SHELL of the submitting client.
SGE_O_TZ the time zone of the submitting client.
SGE_O_WORKDIR the absolute path of the current working
directory of the submitting client.
Furthermore, Sun Grid Engine sets additional variables into
the job's environment, as listed below.
ARC
SGE_ARCH The Sun Grid Engine architecture name of the
node on which the job is running. The name is
compiled-in into the **[sge_execd(8)](../htmlman8/sge%5Fexecd.html?pathrev=V62u5%5FTAG)** binary.
SGE_CKPT_ENV Specifies the checkpointing environment (as
selected with the -ckpt option) under which a
checkpointing job executes. Only set for
checkpointing jobs.
SGE_CKPT_DIR Only set for checkpointing jobs. Contains
path _ckpt__ _dir_ (see **[checkpoint(5)](../htmlman5/checkpoint.html?pathrev=V62u5%5FTAG)** ) of the
checkpoint interface.
SGE_STDERR_PATH
the pathname of the file to which the stan-
dard error stream of the job is diverted.
Commonly used for enhancing the output with
error messages from prolog, epilog, parallel
environment start/stop or checkpointing
scripts.
SGE_STDOUT_PATH
the pathname of the file to which the stan-
dard output stream of the job is diverted.
Commonly used for enhancing the output with
messages from prolog, epilog, parallel
environment start/stop or checkpointing
scripts.
SGE_STDIN_PATH the pathname of the file from which the stan-
dard input stream of the job is taken. This
variable might be used in combination with
SGE_O_HOST in prolog/epilog scripts to
transfer the input file from the submit to
the execution host.
SGE_JOB_SPOOL_DIR
The directory used by **[sge_shepherd(8)](../htmlman8/sge%5Fshepherd.html?pathrev=V62u5%5FTAG)** to
store job related data during job execution.
This directory is owned by root or by a Sun
Grid Engine administrative account and com-
monly is not open for read or write access to
regular users.
SGE_TASK_ID The index number of the current array job
task (see -t option above). This is an unique
number in each array job and can be used to
reference different input data records, for
example. This environment variable is set to
"undefined" for non-array jobs. It is possi-
ble to change the predefined value of this
variable with -v or -V (see options above).
SGE_TASK_FIRST The index number of the first array job task
(see -t option above). It is possible to
change the predefined value of this variable
with -v or -V (see options above).
SGE_TASK_LAST The index number of the last array job task
(see -t option above). It is possible to
change the predefined value of this variable
with -v or -V (see options above).
SGE_TASK_STEPSIZE
The step size of the array job specification
(see -t option above). It is possible to
change the predefined value of this variable
with -v or -V (see options above).
ENVIRONMENT The ENVIRONMENT variable is set to BATCH to
identify that the job is being executed under
Sun Grid Engine control.
HOME The user's home directory path from the
**[passwd(5)](../htmlman5/passwd.html?pathrev=V62u5%5FTAG)** file.
HOSTNAME The hostname of the node on which the job is
running.
JOB_ID A unique identifier assigned by the
**[sge_qmaster(8)](../htmlman8/sge%5Fqmaster.html?pathrev=V62u5%5FTAG)** when the job was submitted.
The job ID is a decimal integer in the range
1 to 99999.
JOB_NAME The job name. For batch jobs or jobs submit-
ted by _qrsh_ with a command, the job name is
built as basename of the _qsub_ script filename
resp. the _qrsh_ command. For interactive jobs
it is set to `INTERACTIVE' for _qsh_ jobs,
`QLOGIN' for _qlogin_ jobs and `QRLOGIN' for
_qrsh_ jobs without a command.
This default may be overwritten by the -_N_.
option.
JOB_SCRIPT The path to the job script which is executed.
The value can not be overwritten by the -v or
-V option.
LOGNAME The user's login name from the **[passwd(5)](../htmlman5/passwd.html?pathrev=V62u5%5FTAG)**
file.
NHOSTS The number of hosts in use by a parallel job.
NQUEUES The number of queues allocated for the job
(always 1 for serial jobs).
NSLOTS The number of queue slots in use by a paral-
lel job.
PATH A default shell search path of:
/usr/local/bin:/usr/ucb:/bin:/usr/bin
SGE_BINARY_PATH
The path where the Sun Grid Engine binaries
are installed. The value is the concatenation
of the cluster configuration value
binary_path and the architecture name
$SGE_ARCH environment variable.
PE The parallel environment under which the job
executes (for parallel jobs only).
PE_HOSTFILE The path of a file containing the definition
of the virtual parallel machine assigned to a
parallel job by Sun Grid Engine. See the
description of the $pe_hostfile parameter in
**[sge_pe(5)](../htmlman5/sge%5Fpe.html?pathrev=V62u5%5FTAG)** for details on the format of this
file. The environment variable is only avail-
able for parallel jobs.
QUEUE The name of the cluster queue in which the
job is running.
REQUEST Available for batch jobs only.
The request name of a job as specified with
the -N switch (see above) or taken as the
name of the job script file.
RESTARTED This variable is set to 1 if a job was res-
tarted either after a system crash or after a
migration in case of a checkpointing job. The
variable has the value 0 otherwise.
SHELL The user's login shell from the **[passwd(5)](../htmlman5/passwd.html?pathrev=V62u5%5FTAG)**
file. Note: This is not necessarily the shell
in use for the job.
TMPDIR The absolute path to the job's temporary
working directory.
TMP The same as TMPDIR; provided for compatibil-
ity with NQS.
TZ The time zone variable imported from
**[sge_execd(8)](../htmlman8/sge%5Fexecd.html?pathrev=V62u5%5FTAG)** if set.
USER The user's login name from the **[passwd(5)](../htmlman5/passwd.html?pathrev=V62u5%5FTAG)**
file.
SGE_JSV_TIMEOUT
If the response time of the client JSV is
greater than this timeout value, then the JSV
will attempt to be re-started. The default
value is 10 seconds, and this value must be
greater than 0. If the timeout has been
reached, the JSV will only try to re-start
once, if the timeout is reached again an
error will occur.
RESTRICTIONS There is no controlling terminal for batch jobs under Sun Grid Engine, and any tests or actions on a controlling ter- minal will fail. If these operations are in your .login or .cshrc file, they may cause your job to abort.
Insert the following test before any commands that are not
pertinent to batch jobs in your .login:
if ( $?JOB_NAME) then
echo "Sun Grid Engine spooled job"
exit 0
endif
Don't forget to set your shell's search path in your shell
start-up before this code.
EXIT STATUS The following exit values are returned:
0 Operation was executed successfully.
25 It was not possible to register a new job according to
the configured _max__ _u__ _jobs_ or _max__ _jobs_ limit. Additional
information may be found in **[sge_conf(5)](../htmlman5/sge%5Fconf.html?pathrev=V62u5%5FTAG)**
>0 Error occurred.
EXAMPLES The following is the simplest form of a Sun Grid Engine script file.
=====================================================
#!/bin/csh
a.out
=====================================================
The next example is a more complex Sun Grid Engine script.
=====================================================
#!/bin/csh
# Which account to be charged cpu time
#$ -A santa_claus
# date-time to run, format [[CC]yy]MMDDhhmm[.SS]
#$ -a 12241200
# to run I want 6 or more parallel processes
# under the PE pvm. the processes require
# 128M of memory
#$ -pe pvm 6- -l mem=128
# If I run on dec_x put stderr in /tmp/foo, if I
# run on sun_y, put stderr in /usr/me/foo
#$ -e dec_x:/tmp/foo,sun_y:/usr/me/foo
# Send mail to these users
#$ -M santa@nothpole,claus@northpole
# Mail at beginning/end/on suspension
#$ -m bes
# Export these environmental variables
#$ -v PVM_ROOT,FOOBAR=BAR
# The job is located in the current
# working directory.
#$ -cwd
a.out
==========================================================
FILES $REQUEST.oJID[.TASKID] STDOUT of job #JID $REQUEST.eJID[.TASKID] STDERR of job $REQUEST.poJID[.TASKID] STDOUT of par. env. of job $REQUEST.peJID[.TASKID] STDERR of par. env. of job
$_cwd_/._sge__ _aliases_ cwd path aliases
$_cwd_/._sge__ _request_ cwd default request
$_HOME_/._sge__ _aliases_ user path aliases
$_HOME_/._sge__ _request_ user default request
<_sge__ _root_>/<_cell_>/_common_/_sge__ _aliases_
cluster path aliases
<_sge__ _root_>/<_cell_>/_common_/_sge__ _request_
cluster default request
<_sge__ _root_>/<_cell_>/_common_/_act__ _qmaster_
Sun Grid Engine master host file
SEE ALSO sge_intro(1), qconf(1), qdel(1), qhold(1), qmod(1), qrls(1), qstat(1), accounting(5), sge_aliases(5), sge_conf(5), sge_request(5), sge_pe(5), complex(5).
COPYRIGHT If configured correspondingly, qrsh and qlogin contain por- tions of the rsh, rshd, telnet and telnetd code copyrighted by The Regents of the University of California. Therefore, the following note applies with respect to qrsh and qlogin: This product includes software developed by the University of California, Berkeley and its contributors.
See **[sge_intro(1)](../htmlman1/sge%5Fintro.html?pathrev=V62u5%5FTAG)** as well as the information provided in
<sge_root>/3rd_party/qrsh and <sge_root>/3rd_party/qlogin
for a statement of further rights and permissions.
Man(1) output converted withman2html