Pitzer
OSC has expanded Pitzer Cluster approximately tripling the peak capacity.
Pitzer Downtime September 22, 2020
An approximately 3-hour downtime for the Pitzer system is scheduled starting from 9 a.m. Tuesday, September 22, 2020, to finalize the Slurm transition on the Pitzer system. This will affect both the Pitzer legacy compute and login nodes, as well as the new Pitzer hardware. During this downtime time, users will not be able to access Pitzer and submit jobs. Other OSC services, including Owens and Ruby Clusters, web portals, and HPC file servers will be available.
ssh connection timeouts and slowness
OSC users may experience slow connections or connection timeouts. The cause appears to be a pattern of coordinated, distributed ssh scans of OSC systems. OSC staff is currently investigating ways to mitigate this.
Please contact oschelp@osc.edu if there are any questions/concerns.
Pitzer Expansion Early User Program
In preparation for the deployment of the new hardware as well as the Slurm migration on Pitzer in fall 2020, OSC would like to invite all members of the client community to participate in the Pitzer Expansion Early User Program in order to test the functionality of new hardware, including Dual GPU and Quad GPU features, and test the new Slurm scheduler and its TORQUE/Moab compatibility. Jobs that are eligible for the early user program will not be charged and there is no registration required, all OSC users are eligible.
Slurm Migration Issues
This page documents the known issues for migrating jobs from Torque to Slurm.
$PBS_NODEFILE and $SLURM_JOB_NODELIST
Please be aware that $PBS_NODEFILE
is a file while $SLURM_JOB_NODELIST
is a string variable.
The analog on Slurm to cat $PBS_NODEFILE
is srun hostname | sort -n
Environment variables are not evaluated in job script directives
Environment variables do not work in a slurm directive inside a job script.
Steps on How to Submit Jobs
How to Submit Interactive jobs
There are different ways to submit interactive jobs.
Using sinteractive
You can use the custom tool sinteractive
as:
Pitzer compute unavailable between 7am Aug 18 and noon Aug 20, 2020
A downtime for all OSC HPC systems is scheduled from 7 a.m. to 9 p.m., Tuesday, August 18, 2020. Pitzer login nodes will be available at the end of the normal downtime window. However, all compute nodes of Pitzer cluster will be unavailable through noon on August 20, 2020 to allow for cooling changes for the Pitzer expansion. To stay up to date on system notices, follow @HPCNotices on Twitter. As always, you can contact us at OSC Help.
How to Submit, Monitor and Manage Jobs
Submit Jobs
Use | Torque/Moab Command | Slurm Equivalent |
---|---|---|
Submit batch job | qsub <jobscript> |
sbatch <jobscript> |
Submit interactive job | qsub -I [options] |
|