R/qhost.R
qhost.Rd
List Available Host and Their Current Statuses
qhost()
qhost() returns a data.frame (tibble) where each row corresponds to a unique host (compute node).
This function queries SGE's qhost on the system.
qhost
# \donttest{ if (has_qhost()) { qh <- qhost() print(qh) ## Ignore compute nodes that are without load qh <- subset(qh, !is.na(load)) print(qh) } # }