List Available Host and Their Current Statuses

qhost()

Value

qhost() returns a data.frame (tibble) where each row corresponds to a unique host (compute node).

Details

This function queries SGE's qhost on the system.

Examples

# \donttest{
if (has_qhost()) {
  qh <- qhost()
  print(qh)
 
  ## Ignore compute nodes that are without load
  qh <- subset(qh, !is.na(load))
  print(qh)
}
# }