Update 2.1 Batch job submission authored by Odunlami Marc's avatar Odunlami Marc
...@@ -68,15 +68,18 @@ squeue -u username ...@@ -68,15 +68,18 @@ squeue -u username
## Job and cluster monitoring ## Job and cluster monitoring
In the output of the *squeue* command, the "ST" column provides the state of the job. The most commons are: In the output of the *squeue* command, the "ST" column provides the state of the job. The most commons are:
* R: running. * **R**: running.
* PD: pending. The job is awaiting or resources. * **PD**: pending. The job is awaiting or resources.
* S: suspended. This typically happens when the job is preempted by another job. * **S**: suspended. This typically happens when the job is preempted by another job.
The title of the last column displayed by *squeue* is "NODELIST(REASON)": The title of the last column displayed by *squeue* is "NODELIST(REASON)":
* For running jobs, displays the list of allocated nodes. * For running jobs, displays the list of allocated nodes.
* For pending jobs, displays the pending reason: * For pending jobs, displays the pending reason:
* f * **Resources**: the resources requested by the job are not currently available since used by other jobs.
* ff * **Priority**: the job priority is lower than the priority of other jobs.
* **QOSMaxCpuPerJobLimit**
* **BeginTime**: your job has been requeue by the system and is waiting to start.
* **
## Error analysis ## Error analysis
* QOSMaxCpuPerJobLimit * QOSMaxCpuPerJobLimit
... ...
......