Skip to content

SLURM tip: display the full job name in squeue

Insang Song edited this page Aug 15, 2024 · 1 revision
  • If the job name is longer than 30 characters, change the number in %.30j to the larger one.
  1. The current user's submission
# All nodes
squeue --format="%.18i %.9P %.30j %.8u %.8T %.10M %.9l %.6D %R" --me

# Specific node
squeue --format="%.18i %.9P %.30j %.8u %.8T %.10M %.9l %.6D %R" --partition=partition
  1. All users' submission
# All nodes
squeue --format="%.18i %.9P %.30j %.8u %.8T %.10M %.9l %.6D %R"

# Specific node
squeue --format="%.18i %.9P %.30j %.8u %.8T %.10M %.9l %.6D %R --partition=partition"
Clone this wiki locally