queues: List Available Queues and Their Properties

View source: R/queues.R

queuesR Documentation

List Available Queues and Their Properties

Description

List Available Queues and Their Properties

Usage

queues(parse = TRUE)

Arguments

parse

If TRUE, qhost -f columns that contain multiple properties (e.g. 'states') are further parsed for easy access.

Details

This function queries SGE's qstat -f on the system.

Value

A data.frame (tibble) where each row corresponds to a unique queue on a particular host.

Examples


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)
}



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