qhost: List Available Host and Their Current Statuses

View source: R/qhost.R

qhostR Documentation

List Available Host and Their Current Statuses

Description

List Available Host and Their Current Statuses

Usage

qhost()

Details

This function queries SGE's qhost on the system.

Value

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

Examples


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



ucsf-wynton/wyntonquery documentation built on May 15, 2024, 6:23 a.m.