HPC Documentation

Guides, references, and tutorials for the WCM cluster

Resource Policy: Login Nodes

Resource Policy: Login Nodes
Login nodes are for administrative tasks only. Compute-intensive processes will be terminated to ensure system stability for all users.
Prohibited Activities

The login node is a shared "reception desk." Do not run the following directly on the login node:

  • Python, R, or Slurm Scripts: Even brief executions can spike shared resources.
  • Data Compression: Using tar, zip, or pigz on large datasets.
  • AI Applications: Triggering code execution or data-heavy workflows locally.
Environment Comparison
FeatureLogin NodeCompute Node
PurposeFile management / EditingActual job execution
Shared byAll usersAllocated to you
Running Jobs❌ Prohibited✅ Required
The Correct Workflow
Option A: Interactive Testing
# Request a compute node for debugging
srun --partition=interactive --cpus-per-task=1 --mem=4G --time=02:00:00 --pty bash
Option B: Batch Processing
#!/bin/bash #SBATCH --job-name=compression #SBATCH --mem=8G tar -czf data.tar.gz ./large_folder
💡 System Tip: If using screen, always start the session after you have successfully landed on a compute node via srun.

Resource Policy: To maintain a responsive environment for all users, compute-intensive processes found on login nodes will be terminated with or without notice.