List Available Queues and Their Properties
Arguments
- parse
If TRUE
, qhost -f
columns that contain multiple properties
(e.g. 'states') are further parsed for easy access.
Value
A data.frame (tibble) where each row corresponds to a
unique queue on a particular host.
Details
This function queries SGE's qstat -f
on the system.
Examples
# \donttest{
if (has_qhost()) {
q <- queues()
print(q)
## Ignore queues whose nodes are disabled, without load, or those
## on developer and test nodes
q <- available(q)
print(q)
}
# }