How to know personal status from slurm
跳至導覽
跳至搜尋
check submitted jobs
squeue -l squeue -u username -l squeue --help # check command
查詢自己過去幾號到今天跑的JOB 要連到TITAN 執行 使用者只能查詢到自己
sacct -S 2025-07-01 --format=JobID,User,Elapsed,State
查詢統計資料(連到TITAN)
sreport cluster AccountUtilizationByUser start=2025-07-01 end=2025-07-27
查詢JOB細節
scontrol show job 1479
查詢JOB記憶體使用量 (MAXRSS)
sstat -j id.batch --format=JobID,MaxRSS,AveRSS,MaxVMSize
組合指令 看所有使用者JOB 記憶體使用量
squeue -u $USER -h -o "%i" | xargs -I {} sstat -j {}.batch --format=JobID,MaxRSS,AveRSS,MaxVMSize