There are multiple filesystems mounted to each of Pawsey's supercomputers. Each of these filesystems are designed for particular use cases. This page provides a detailed description of these filesystems. |
The following filesystems are available from one or more Pawsey supercomputing systems:
/home
- which should be used to store software configuration files that cannot be easily located elsewhere./software
- Lustre filesystem which should contain both Pawsey and researcher software installations and Slurm batch scripts. /scratch
- Lustre filesystem which should contain working data in use by jobs that are actively queued and running on the supercomputerThese filesystems can be viewed using the df
command from the login nodes:
$ df -H
Apart from /home
, all are Lustre distributed filesystems. Lustre is an open-source, high performance parallel file system optimised for high throughput.
The filesystems are different in many ways and are designed to facilitate different activities in supercomputing. The intended usage for each of them is explained below. Use outside of these purposes may cause poor performance for a particular activity as well as create detrimental impacts to other users.
|
The home filesystem should be used to store software configuration files. It is a Networked FileSystem (NFS). Each user has a default login directory in the /home filesystem with a quota of 1 GB and 10,000 individual files.
/home/[username]
The location of the home directory can be displayed using the $HOME environment variable:
$ echo $HOME
|
Current usage of the /home
filesystem can be viewed by executing the quota
command:
$ quota -s
Due to its small quota limit and low performance, the /home
filesystem is not suitable for launching or storing production work. Files such as software installations and Slurm batch scripts should be stored on the /software
filesystem. Working data, such as job input and output, should use the /scratch
file system.
First thing to do is to identify those directories that contain a large number of files or those files that are too large and are consuming your quota. Then delete them.
You can use the following command that finds the subdirectories recursively and list them in descending order of containing files. Execute this command from your $HOME
directory:
|
Then you can check the file $MYSCRATCH/homeSubdirectoriesRanked.out
and decide what subdirectories to remove. Note that the output is written in $MYSCRATCH
because you may have not enough quota to write in $HOME
.
|
Then you can decide which files to remove. Note that you could have used the last filter (head -n 10
) also in the previous command to avoid a large output of lines, or you could have used here the same final filters as in the previous command in order to save output into a file for a later careful check.
Further explanation about quotas, permissions and copy (cp)
vs move (mv)
of files and directories is given in the sections below.
The /software
filesystem is a Lustre file system with much higher throughput than /home
. It is intended for software installations and Slurm batch script templates. Each project has an associated directory on the filesystem whose path is /software/projects/<project>
. Within a project directory, each project member has his or her own directory whose full path, /software/projects/<project>/<username>
, is contained in the MYSOFTWARE
environment variable.
There are two types of quota in place on /software
:
|
All members of a project have read and write access to the /software/projects/<project>
directory, so it can be used for sharing software installations and batch script templates within a project. Your allocation of space on /software
exists for the duration of the project and is not subject to any automatic purging.
Quotas on disk space usage are managed per project group. If any member of the project exceeds the shared project quota on /software
, it will affect the whole project and will be unable to save data (you may see a 'quota exceeded' message')
The project-wide quota consumption can be queried using the following command:
|
whereas the per-user quota usage can be queried in the following way:
|
The scratch filesystem should be used for working data, which is input and output files actively used by jobs queued or running on the supercomputer.
Each project has a directory /scratch/<project>
in which each project member has a subdirectory /scratch/<project>/<username>
.
/scratch
is a Lustre filesystem and its location is available in the environment variable $MYSCRATCH.
$ echo $MYSCRATCH
|
The /scratch
filesystem has the highest performance of the available filesystems, and allows jobs to temporarily use large amounts of storage while running. However, to maintain high performance for all users, there are limits of 2PB per project and 2 million files per user.
The project usage of the /scratch
filesystem can be checked by using the following command, replacing [project]
with your project name:
$ lfs quota -g $PAWSEY_PROJECT -h /scratch
To ensure that /scratch
remains available to support jobs actively running on the system, it is critical to move files off the filesystem to a more permanent storage as workflows complete. The copy
partition on Setonix can be used for these data transfer jobs.
Leaving files to be removed by the 21-day purge policy places an unnecessary load on the filesystem as the system is scanned for these files, and causes less capacity to be available for other users.
|
Reference data sets are static data required by software for calibrations or testing or as widely used input data. Reference data sets that are used by several project groups will be provided on /scratch
by Pawsey to avoid multiple copies existing. These data sets will be contained in subdirectories of /scratch/references.
Examples include:
/scratch/references/askap
/scratch/references/mwa
/scratch/references/blastdb_update
These reference datasets will be exempt from the /scratch
purge policy.
Some of the bioinformatics reference datasets available are:
For more information, see the Life Science and Bioinformatics page.
If you would like to request addition of a new reference dataset, please email the Pawsey Helpdesk help@pawsey.org.au
The effect of file permissions and ownership on storage quotas varies depending on which filesystem the data is located. The default behaviour can be summarised as such:
/home
are accessible only to that user./software and
/scratch
directories are accessible only to that user and to members of the same project.For more detail on these filesystems refer to Filesystem Policies. The filesystem quotas are summarised in table 1:
Table 1. Pawsey filesystems: capacity, file limit and duration
|
The default group membership for files and directories that are created in /home
is the user's primary group, which is the same as their user ID. Files and directories that are created in any of the Lustre filesystems are associated by default with the user's project ID.
For the /software
filesystem, Pawsey uses a file's group ownership to calculate its effect on storage quotas. To make use of the group quota for a project, files must be associated with the group corresponding to that project ID.
A user is always a member of their own primary group (which is the same as their own username) and can also be a member of more than one project. This is important to know because files created with a group associated to a username rather than a project are limited to a default quota of 1GB and there can be at most 100 of them.
|
File permissions and ownerships are also important to consider. The default permissions of files created by a user on any of the Setonix filesystems is the same, but the default ownerships are different. An example of default properties of a file in /home filesystem is as below:
|
Note that there are 10 characters describing the permissions. The first character is not really a permission, but an indication of the type "file". So a "-
" in the first character indicates that myscript.sh
is indeed a file. (A "d"
would indicate it is not a file but a directory, an "l
" would indicate it is a link, etc.). The rest nine characters indicate the permissions of the file, and these permissions are broken down into three groups of three:
- | The - in the first character indicates this is a file. |
rwx | The first set of permissions determines what actions can be performed by the owner of the file. In this case |
r-- | The second set of permissions determines what actions can be performed by other users who belong to the same group as the file. The group here is the primary or default group of the file's owner, which is |
r-- | The final set of permissions apply to all other users. While the permissions are set to read, the top-level user directory is locked to just the user or project, so others are not able to read, write, or execute files in another group's directories. |
An example of default properties of a file in /software
filesystem is as below:
|
So, as said, default permissions are the same, but not the default ownerships (the next two words after the permissions).
The next two words after the permissions are, respectively, the owner-name and the group-name of the file. In the case of files created in /home
, both the owner and the group are assigned to the username
by default. And in the case of files created in /software
and /scratch
, the default for the group-name is the projectgroup
for your project.
|
File transfer programs like WinSCP can also cause issues with permissions and groups. You should consult the documentation of your preferred transfer program. rsync
users should avoid using the -a
and -p
flags; these flags will preserve permissions of the source files, which may conflict with the default behaviour on Pawsey systems. Some additional information about file transfer programs is at: Transferring Files in/out Pawsey Filesystems.
Pawsey provides a tool that lets you fix file and directory ownerships on /software
. The fix.group.permission.sh
script is available in the pawseytools module, which is loaded by default. To use it, enter the script name followed by your group name. For example, if your project ID is projectgroup
you would enter this:
$ fix.group.permission.sh projectgroup
|
There is a manual way of doing this in your own area using the find
command. Replace projectgroup
with your project ID and username
with your user name.
|