1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
|
<HTML>
<BODY BGCOLOR=white>
<PRE>
<!-- Manpage converted by man2html 3.0.1 -->
NAME
sge_types - Grid Engine type descriptions
DESCRIPTION
The Grid Engine user interface consists of several programs
and files. Some command-line switches and several file
attributes are types. The syntax for these types is
explained in this page.
TYPES
The syntax of Grid Engine types in alphabetic order:
expression
The wildcard expression is a regular boolean expression that
consists of a couple of <I>pattern</I>'s joined by boolean opera-
tors and priority brackets. When ever expression are used
the following definition applies:
expression= ["!"] ["("] valExp [")"] [ AND_OR expression ]*
valExp = pattern | expression AND_OR = "&" | "|"
where:
"!" not operator negate the following pattern or expresion
"&" and operator logically and with the following expression
"|" or operator logically or with the following expression
"(" open bracket begin the priority evaluated expression. The close bracket is required
")" close bracket ends the priority evaluated expression.
"pattern"see the <I>pattern</I> definition
The wildcard expresion itself should be put into '"' to
ensure, that the clients get the expression.
e.g.
"!(lx*|sol*)&*64*"not begin with lx or sol, but contain
64 "(rh_3*|suse_[89]*)&!rh_3.1"attribute rh_3*, suse_8*
or suse_9*, but do not on a rh_3.1
pattern
When ever patterns are used the following definition
applies:
"*" matches any character and any number of characters
(between 0 and inv).
"?" matches any character. It cannot be no character
"." is the character ".". It has no other meaning
"\" escape character. "\\" = "\", "\*" = "*", "\?" = "?"
"[...]" specifies an array or a range of allowed
characters for one character at a specific position.
Character ranges may be specified using the a-z notation.
The caret symbol (^) is not interpreted as a logical
not; it is intrepreted literally.
For more details please see
<B><A HREF="../htmlman5/fnmatch.html">fnmatch(5)</A></B>
The pattern itself should be put into '"' to ensure, that
the clients get the pattern. The or '|' operator is not sup-
ported.
range
The task range specifier has the form
n[-m[:s]][,n[-m[:s]], ...] or n[-m[:s]][ n[-m[:s]] ...]
and thus consists of a comma or blank separated list of
range specifiers n[-m[:s]]. The ranges are concatenated to
the complete task id range. Each range may be a single
number, a simple range of the form n-m or a range with a
step size.
wc_host
A wildcard host specification (<I>wc</I>_<I>host</I>) is a wildcard
expression which might match one or more hosts used in the
cluster. The first character of that string never begins
with an at-character ('@'), even if the expression begins
with a wildcard character.
e.g.
* all hosts
a* all host beginning with an 'a'
wc_hostgroup
A wildcard hostgroup specification (<I>wc</I>_<I>hostgroup</I>) is a wild-
card expression which might match one or more hostgroups.
The first character of that string is always an at-character
('@').
More information concerning hostgroups can be found in <I>host-</I>
<B><A HREF="../htmlman5/group.html">group(5)</A></B>
e.g.
@* all hostgroups in the cluster
@solaris the @solaris hostgroup
wc_job
The wildcard job specification is a placeholder for job ids,
job names include job name pattern. A job id always refer-
ences one job, while the names and pattern might reference
multiple jobs.
wc_job := job-id | job-name | pattern
wc_job_range
The wildcard job range specification allows to reference
specific array tasks for one or multipe jobs. The job is
referenced via wc_job and in addition gets a range specifier
for the array tasks.
wc_job_range := wc_job [ -t range]
wc_job_list
The wildcard job list specification allows to reference mul-
tiple jobs with one command.
wc_job_list := wc_job [ , wc_job , ...]
wc_job_range_list
The wildcard job range list (<I>wc</I>_<I>job</I>_<I>range</I>_<I>list</I>) is specified
by one of the following forms:
<I>wc</I>_<I>job</I>[ -<I>t</I> <I>range</I>][{, }<I>wc</I>_<I>job</I>[ -<I>t</I> <I>range</I>]{, }...]
If present, the <I>task</I>_<I>range</I> restricts the effect of the <I>qmod</I>
operation to the array job task range specified as suffix to
the job id (see the -t option to <B><A HREF="../htmlman1/qsub.html">qsub(1)</A></B> for further details
on array jobs).
wc_qdomain
<I>wc</I>_<I>qdomain</I> := <I>wc</I>_<I>cqueue</I> "@" <I>wc</I>_<I>hostgroup</I>
A wildcard expression queue domain specification
(<I>wc</I>_<I>qdomain</I>) starts with a wildcard expression cluster queue
name (<I>wc</I>_<I>cqueue</I>) followed by an at-character '@' and a wild-
card expression hostgroup specification (<I>wc</I>_<I>hostgroup</I>).
<I>wc</I>_<I>qdomain</I> are used to address a group of queue instances.
All queue instances residing on a hosts which is part of
matching hostgroups will be addressed. Please note, that
<I>wc</I>_<I>hostgroup</I> always begins with an at-character.
e.g.
*@@* all queue instances whose underlying
host is part of at least one hostgroup
a*@@e* all queue instances begins with a whose underlying
host is part of at least one hostgroup begin with e
*@@solaris all queue instances on hosts part of
the @solaris hostgroup
wc_cqueue
A wildcard expression cluster queue specification
(<I>wc</I>_<I>cqueue</I>) is a wildcard expression which might match one
or more cluster queues used in the cluster. That string
never contains an at-character ('@'), even if the expression
begins with a wildcard character.
e.g.
* all cluster queues
a* all cluster queues beginning with an 'a'
a*&!adam all cluster queues beginning with an 'a',but not adam
wc_qinstance
<I>wc</I>_<I>qinstance</I> := <I>wc</I>_<I>cqueue</I> "@" <I>wc</I>_<I>host</I>
A wildcard expression queue instance specification
(<I>wc</I>_<I>qinstance</I>) starts with a wildcard expression cluster
queue name (<I>wc</I>_<I>cqueue</I>) followed by an at-character '@' and a
wildcard expression hostname (<I>wc</I>_<I>host</I>).
<I>wc</I>_<I>qinstance</I> expressions are used to address a group of
queue instances whose underlying hostname matches the given
expression. Please note that the first character of <I>wc</I>_<I>host</I>
does never match the at-character '@'.
e.g.
*@* all queue instances in the cluster
*@b* all queue instances whose
hostname begins with a 'b'
*@b*|c* all queue instances whose
hostname begins with a 'b' or 'c'
wc_queue
<I>wc</I>_<I>queue</I> := <I>wc</I>_<I>cqueue</I> | <I>wc</I>_<I>qdomain</I> | <I>wc</I>_<I>qinstance</I>
A wildcard queue expression (<I>wc</I>_<I>queue</I>) might either be a
wildcard expression cluster queue specification (<I>wc</I>_<I>cqueue</I>)
or a wildcard expression queue domain specification
(<I>wc</I>_<I>qdomain</I>) or a wildcard expression queue instance specif-
ication (<I>wc</I>_<I>qinstance</I>).
e.g.
big_*1 cluster queues which begin with
"big_" and end with "1"
big_*&!*1 cluster queues which begin with
"big_" ,but does not end with "1"
*@fangorn all qinstances residing on host
fangorn
wc_queue_list
<I>wc</I>_<I>queue</I>_<I>list</I> := <I>wc</I>_<I>queue</I> ["," <I>wc</I>_<I>queue</I> "," ...]
Comma separated list of wc_queue elements.
e.g.
big, medium_*@@sol*, *@fangorn.sun.com
wc_user
A wildcard user name pattern is either a wildcard user name
specification or a full user name.
wc_user := user_name | pattern
wc_user_list
A list of user names.
wc_user_list := wc_user [ , wc_user , ...]
wc_project
A wildcard project name pattern is either a wildcard project
name specification or a full project name.
wc_project := project | pattern
wc_pe_name
A wildcard parallel environment name pattern is either a
wildcard pe name specification or a full pe name.
wc_pe_name := pe_name | pattern
SEE ALSO
<B><A HREF="../htmlman1/qacct.html">qacct(1)</A></B>, <B><A HREF="../htmlman1/qconf.html">qconf(1)</A></B>, <B><A HREF="../htmlman1/qquota.html">qquota(1)</A></B>
COPYRIGHT
Copyright: 2004-2007 by Sun Microsystems, Inc.
</PRE>
<HR>
<ADDRESS>
Man(1) output converted with
<a href="http://www.oac.uci.edu/indiv/ehood/man2html.html">man2html</a>
</ADDRESS>
</BODY>
</HTML>
|