Slurm

Slurm queue 상태를 확인하기 위해선 sinfo 명령어를 사용합니다. 이 때 CF와 같은 작업 상태에 대한 설명 및 자세한 내용은 본 문서를 참고해주세요.

Job State Codes

Status
Code
Explaination

COMPLETED

CD

The job has completed successfully.

COMPLETING

CG

The job is finishing but some processes are still active.

FAILED

F

The job terminated with a non-zero exit code and failed to execute.

PENDING

PD

The job is waiting for resource allocation. It will eventually run.

PREEMPTED

PR

The job was terminated because of preemption by another job.

RUNNING

R

The job currently is allocated to a node and is running.

SUSPENDED

S

A running job has been stopped with its cores released to other jobs.

STOPPED

ST

A running job has been stopped with its cores retained.

Last updated