Skip to content

Storage

Introduction

There are two main shared file systems on Salomon cluster: HOME and SCRATCH.

All login and compute nodes may access same data on shared file systems. Compute nodes are also equipped with local (non-shared) scratch, ramdisk, and tmp file systems.

Policy (In a Nutshell)

Note

  • Use HOME for your most valuable data and programs.
  • Use WORK for your large project files.
  • Use TEMP for large scratch data.

Warning

Do not use for archiving!

Archiving

Do not use shared file systems as a backup for large amount of data or long-term archiving mean. The academic staff and students of research institutions in the Czech Republic can use CESNET storage service, which is available via SSHFS.

Shared File Systems

Salomon computer provides two main shared file systems, the HOME file system and the SCRATCH file system. The SCRATCH file system is partitioned to WORK and TEMP workspaces. The HOME file system is realized as a tiered NFS disk storage. The SCRATCH file system is realized as a parallel Lustre file system. Both shared file systems are accessible via the Infiniband network. Extended ACLs are provided on both HOME/SCRATCH file systems for sharing data with other users using fine-grained control.

HOME File System

The HOME file system is realized as a Tiered file system, exported via NFS. The first tier has the capacity of 100 TB, second tier has the capacity of 400 TB. The file system is available on all login and computational nodes. The Home file system hosts the HOME workspace.

SCRATCH File System

The architecture of Lustre on Salomon is composed of two metadata servers (MDS) and six data/object storage servers (OSS). Accessible capacity is 1.69 PB, shared among all users. The SCRATCH file system hosts the WORK and TEMP workspaces.

Configuration of the SCRATCH Lustre storage

  • SCRATCH Lustre object storage
  • Disk array SFA12KX
  • 540 x 4 TB SAS 7.2krpm disk
  • 54 x OST of 10 disks in RAID6 (8+2)
  • 15 x hot-spare disk
  • 4 x 400 GB SSD cache
  • SCRATCH Lustre metadata storage
  • Disk array EF3015
  • 12 x 600 GB SAS 15 krpm disk

Understanding the Lustre File Systems

A user file on the Lustre file system can be divided into multiple chunks (stripes) and stored across a subset of the object storage targets (OSTs) (disks). The stripes are distributed among the OSTs in a round-robin fashion to ensure load balancing.

When a client (a compute node from your job) needs to create or access a file, the client queries the metadata server (MDS) and the metadata target (MDT) for the layout and location of the file's stripes. Once the file is opened and the client obtains the striping information, the MDS is no longer involved in the file I/O process. The client interacts directly with the object storage servers (OSSes) and OSTs to perform I/O operations such as locking, disk allocation, storage, and retrieval.

If multiple clients try to read and write the same part of a file at the same time, the Lustre distributed lock manager enforces coherency so that all clients see consistent results.

Disk Usage and Quota Commands

Disk usage and user quotas can be checked and reviewed using the following command:

$ it4i-disk-usage

Example for Salomon:

$ it4i-disk-usage -h
# Using human-readable format
# Using power of 1000 for space
# Using power of 1000 for entries

Filesystem:    /home
Space used:    110GB
Space limit:   250GB
Entries:       40K
Entries limit: 500K
# based on filesystem quota

Filesystem:    /scratch
Space used:    377GB
Space limit:   100TB
Entries:       14K
Entries limit: 10M
# based on Lustre quota

Filesystem:    /scratch
Space used:    377GB
Entries:       14K
# based on Robinhood

Filesystem:    /scratch/work
Space used:    377GB
Entries:       14K
Entries:       40K
Entries limit: 1.0M
# based on Robinhood

Filesystem:    /scratch/temp
Space used:    12K
Entries:       6
# based on Robinhood

In this example, we view current size limits and space occupied on the /home and /scratch filesystem, for a particular user executing the command. Note that limits are imposed also on number of objects (files, directories, links, etc.) that the user is allowed to create.

To have a better understanding of where the space is exactly used, use the following command:

$ du -hs dir

Example for your HOME directory:

$ cd /home
$ du -hs * .[a-zA-z0-9]* | grep -E "[0-9]*G|[0-9]*M" | sort -hr
258M     cuda-samples
15M      .cache
13M      .mozilla
5,5M     .eclipse
2,7M     .idb_13.0_linux_intel64_app

This will list all directories with megabytes or gigabytes of consumed space in your actual (in this example HOME) directory. List is sorted in descending order from largest to smallest files/directories.

To have a better understanding of the previous commands, read the man pages:

$ man lfs
$ man du

Extended Access Control List (ACL)

Extended ACLs provide another security mechanism beside the standard POSIX ACLs which are defined by three entries (for owner/group/others). Extended ACLs have more than the three basic entries. In addition, they also contain a mask entry and may contain any number of named user and named group entries.

ACLs on a Lustre file system work exactly like ACLs on any Linux file system. They are manipulated with the standard tools in the standard manner.

For more information, see the Access Control List section of the documentation.

Shared Workspaces

Home

Users home directories /home/username reside on HOME file system. Accessible capacity is 0.5 PB, shared among all users. Individual users are restricted by file system usage quotas, set to 250 GB per user. If 250 GB should prove as insufficient for particular user, contact support, the quota may be lifted upon request.

Note

The HOME file system is intended for preparation, evaluation, processing and storage of data generated by active Projects.

The HOME should not be used to archive data of past Projects or other unrelated data.

The files on HOME will not be deleted until end of the user's lifecycle.

The workspace is backed up, such that it can be restored in case of catastrophic failure resulting in significant data loss. This backup however is not intended to restore old versions of user data or to restore (accidentally) deleted files.

HOME workspace
Accesspoint /home/username
Capacity 500TB
Throughput 6GB/s
User space quota 250GB
User inodes quota 500K
Protocol NFS, 2-Tier

Scratch

The SCRATCH is realized as Lustre parallel file system and is available from all login and computational nodes. There are 54 OSTs dedicated for the SCRATCH file system.

Accessible capacity is 1.6PB, shared among all users on TEMP and WORK. Individual users are restricted by file system usage quotas, set to 10M inodes and 100 TB per user. The purpose of this quota is to prevent runaway programs from filling the entire file system and deny service to other users. Should 100TB of space or 10M inodes prove insufficient, contact support, the quota may be lifted upon request.

Work

The WORK workspace resides on SCRATCH file system. Users may create subdirectories and files in the /scratch/work/project/projectid directory. The directory is accessible to all users involved in the projectid project.

Note

The WORK workspace is intended to store users project data as well as for high performance access to input and output files. All project data should be removed once the project is finished. The data on the WORK workspace are not backed up.

Files on the WORK file system are persistent (not automatically deleted) throughout duration of the project.

Temp

The TEMP workspace resides on SCRATCH file system. The TEMP workspace accesspoint is /scratch/temp. Users may freely create subdirectories and files on the workspace. Accessible capacity is 1.6 PB, shared among all users on TEMP and WORK.

Note

The TEMP workspace is intended for temporary scratch data generated during the calculation as well as for high performance access to input and output files. All I/O intensive jobs must use the TEMP workspace as their working directory.

Users are advised to save the necessary data from the TEMP workspace to HOME or WORK after the calculations and clean up the scratch files.

Warning

Files on the TEMP file system that are not accessed for more than 90 days will be automatically deleted.

WORK workspace TEMP workspace
Accesspoints /scratch/work/user/projectid /scratch/temp
Capacity 1.6PB
Throughput 30GB/s
User space quota 100TB
User inodes quota 10M
Number of OSTs 54
Protocol Lustre

RAM Disk

Local RAM Disk

Every computational node is equipped with file system realized in memory, so called RAM disk.

The local RAM disk is mounted as /ramdisk and is accessible to user at /ramdisk/$PBS_JOBID directory.

The RAM disk is private to a job and local to node, created when the job starts and deleted at the job end.

Note

The local RAM disk directory /ramdisk/$PBS_JOBID will be deleted immediately after the calculation end. Users should take care to save the output data from within the jobscript.

The local RAM disk file system is intended for temporary scratch data generated during the calculation as well as for high-performance access to input and output files. Size of RAM disk file system is limited. It is not recommended to allocate large amount of memory and use large amount of data in RAM disk file system at the same time.

Warning

Be very careful, use of RAM disk file system is at the expense of operational memory.

Local RAM disk
Mountpoint /ramdisk
Accesspoint /ramdisk/$PBS_JOBID
Capacity 110GB
Throughput over 1.5GB/s write, over 5GB/s read, single thread, over 10GB/s write, over 50GB/s read, 16 threads
User quota none

Global RAM Disk

The Global RAM disk spans the local RAM disks of all the nodes within a single job. For more information, see the Job Features section.

Summary

Mountpoint Usage Protocol Net Capacity Throughput Space/Inodes quota Access Service
/home home directory NFS, 2-Tier 500TB 6GB/s 250GB / 500K Compute and login nodes backed up
/scratch/work large project files Lustre 1.69PB 30GB/s 100TB / 10M Compute and login nodes none
/scratch/temp job temporary data Compute and login nodes files older 90 days removed
/ramdisk job temporary data, node local tmpfs 110GB 90GB/s none / none Compute nodes, node local purged after job ends
/mnt/global_ramdisk job temporary data BeeGFS (N*110)GB 3*(N+1)GB/s none / none Compute nodes, job shared purged after job ends

N = number of compute nodes in the job.