qstat: Basic qstat functionality for monitoring jobs running on the...

Description Usage Arguments Value References Examples

View source: R/qstat_functions.R

Description

qstat shows the current status of the available Sun Grid Engine queues and the jobs associated with the queues. Selection options allow you to get information about specific jobs, queues or users. If multiple selections are done a queue is only displayed if all selection criteria for a queue instance are met. Without any option qstat will display only a list of jobs with no queue status information.

Usage

1
2
qstat(username = NULL, full = FALSE, grep = "", verbose = FALSE,
  state = "")

Arguments

username

string, the username to run the qstat for

full

TRUE for full job names, FALSE otherwise

grep

a regular expression string to search for in the qstat output

verbose

TRUE for a printout of the qstat command run, FALSE otherwise

state

string, grab only jobs in the given state. Most common are "r" (running) and "p" (pending). All options are p|r|s|z|S|N|P|hu|ho|hs|hd|hj|ha|h|a. Any combination of states is possible. See qstat manula page for more details.

Value

a data.frame of the qstat output

References

http://gridscheduler.sourceforge.net/htmlman/htmlman1/qstat.html

Examples

1
2
3
4
5
qstat()
qstat(full = TRUE)
qstat(grep = "sti")
qstat(username = "emumford", full = TRUE, verbose = TRUE)
qstat(username = "shadew", grep = "1.0", verbose = TRUE, state = "r")

ShadeWilson/ihme documentation built on May 20, 2019, 8:47 a.m.