1QSTAT(1) User Contributed Perl Documentation QSTAT(1)
2
3
4
6 qstat - display job/partition information in a familiar pbs format
7
9 qstat [-f] [-a|-i|-r] [-n [-1]] [-G|-M] [-u user_list] [-? | --help]
10 [--man] [job_id...]
11
12 qstat -Q [-f]
13
14 qstat -q
15
17 The qstat command displays information about jobs.
18
20 -a Displays all jobs in a single-line format. See the STANDARD OUTPUT
21 section for format details.
22
23 -i Displays information about idle jobs. This includes jobs which are
24 queued or held.
25
26 -f Displays the full information for each selected job in a multi-line
27 format. See the STANDARD OUTPUT section for format details.
28
29 -G Display size information in gigabytes.
30
31 -M Show size information, disk or memory in mega-words. A word is
32 considered to be 8 bytes.
33
34 -n Displays nodes allocated to a job in addition to the basic
35 information.
36
37 -1 In combination with -n, the -1 option puts all of the nodes on the
38 same line as the job id.
39
40 -r Displays information about running jobs. This includes jobs which
41 are running or suspended.
42
43 -u user_list
44 Display job information for all jobs owned by the specified
45 user(s). The format of user_list is: user_name[,user_name...].
46
47 -? | --help
48 brief help message
49
50 --man
51 full documentation
52
54 Displaying Job Status
55
56 If the -a, -i, -f, -r, -u, -n, -G, and -M options are not specified,
57 the brief single-line display format is used. The following items are
58 displayed on a single line, in the specified order, separated by white
59 space:
60
61 the job id
62 the job name
63 the job owner
64 the cpu time used
65 the job state
66 C - Job is completed after having run E - Job is exiting after
67 having run. H - Job is held. Q - job is queued, eligible to run
68 or routed. R - job is running. T - job is being moved to new
69 location. W - job is waiting for its execution time (-a option)
70 to be reached. S - job is suspended.
71
72 the queue that the job is in
73
74 If the -f option is specified, the multi-line display format is used.
75 The output for each job consists of the header line: Job Id: job
76 identifier followed by one line per job attribute of the form:
77 attribute_name = value
78
79 If any of the options -a, -i, -r, -u, -n, -G or -M are specified, the
80 normal single-line display format is used. The following items are
81 displayed on a single line, in the specified order, separated by white
82 space:
83
84 the job id
85 the job owner
86 the queue the job is in
87 the job name
88 the session id (if the job is running)
89 the number of nodes requested by the job
90 the number of cpus or tasks requested by the job
91 the amount of memory requested by the job
92 either the cpu time, if specified, or wall time requested by the job,
93 (in hh:mm)
94 the job state
95 The amount of cpu time or wall time used by the job (in hh:mm)
96
98 On success, qstat will exit with a value of zero. On failure, qstat
99 will exit with a value greater than zero.
100
101
102
103perl v5.34.0 2021-11-17 QSTAT(1)