Storage and data transfer
Once you can log in to the cluster, then you may want to set up your computation and you need your data. Therefore, two questions arise: 1. Where to store data? In this document, we explain you the storage system and give examples how to transfer your data between your local computer and the cluster. Quick examplesUpload a directory from you local computer to /cluster/scratch/username ($SCRATCH) on Euler $ scp -r dummy_dir username@euler.ethz.ch:/cluster/scratch/username/ Log in to the cluster and check your disk space quota $ lquota |
Personal storage
$HOME
$ cd $HOME $ pwd /cluster/home/username
$HOME is a safe, long-term storage for critical data (program source, scripts, etc.) and is accessible only by the user (owner). This means other people cannot read its contents.
There is a disk quota of 16/20 GB and a maximum of 80’000/100’000 files (soft/hard quota). You can check the quota with the command lquota.
Its content is saved every hour/day/week using snapshot, which is stored in the hidden .snapshot directory.
Global Scratch$ cd $SCRATCH $ pwd /cluster/scratch/username $SCRATCH is a fast, short-term storage for computations running on the cluster. It is created automatically upon first access (cd $SCRATCH) and visible (mounted) only when accessed. It has strict usage rules (see $SCRATCH/__USAGE_RULES__ for details) and has no backup. |
Local Scratch/scratch on each compute node ($TMPDIR) The local scratch is intended for serial, I/O-intensive applications. Therefore, it has a very short life span. Data are deleted automatically when the job ends. Scratch space must be requested by the job and has no backup. |
Group storage
Shareholders can buy the space on Project and Work as much as they need, and manage access rights. Quota can be checked with lquota. The content is backed up multiple times per week.
Project$ cd /cluster/project/groupname Similar to $HOME, but for groups, it is a safe, long-term storage for critical data. |
Work$ cd /cluster/work/groupname Similar to global scratch, but without purge, it is a fast, short-or medium-term storage for large computations. The folder is visible only when accessed. |
External Storage
Central NASGroups who have purchased storage on the central NAS of ETH provided ID Systemdienste can access it on our clusters. |
Other NASGroups who are operating their own NAS can export a shared file system via NFS to Euler. The user and group ID's on the NAS needs to be consistent with ETH user names and groups. |
The NAS share needs to be mountable via NFSv3 (shares that only support CIFS cannot be mounted on the HPC clusters), and exported to the subnet of our HPC clusters. The NAS is then mounted automatically on our clusters under /nfs/servername/sharename |
File system comparison
File system | Life span | Max size | Snapshots | Backup | Small files | Large files |
---|---|---|---|---|---|---|
$HOME | permanent | 16 GB | ✓ | ✓ | ✓ | o |
$SCRATCH | 2 weeks | 2.5 TB | - | - | o | ✓✓ |
/cluster/project | 4 years | flexible | optional | ✓ | ✓ | ✓ |
/cluster/work | 4 years | flexible | - | ✓ | o | ✓✓ |
Local /scratch | duration of job | 800 GB | - | - | ✓✓ | o |
Central NAS | flexible | flexible | ✓ | optional | ✓ | ✓ |
Retention time
- Snapshots: up to 3 weeks
- Backup: up to 90 days