When you are writing large files to /scratch
or any other Lustre filesystem, it is recommended to stripe these across multiple partitions (Lustre OSTs). Very large files (> 1 TB), must be striped, as they can rapidly fill the OST and cause I/O issues for you and other users.
By default, files on /scratch
are not striped, so when a large file is written to a single OST, it can limit your I/O performance. You will need to set the file striping (or file layout) before writing the file, or migrate the file if it has already been written.
Step-by-step guide - creating and setting a new striped directory
For creating a new directory and setting the file layout for new files. This will only affect newly written files, see migration below to apply striping to already existing files.
Create a directory which will contain your files:
Terminal 1. Create the directory$ mkdir /scratch/pawsey0000/data
Designate the directory for striping and the number of OSTs to stripe it over, four in this example:
Terminal 2. Designate the new directory for striping$ lfs setstripe --stripe-count 4 /scratch/pawsey0000/data
Newly written files in this directory will be striped over the specified number of partitions. This can be confirmed:
Terminal 3. Confirm the striping of files$ lfs getstripe /scratch/pawsey0000/data /scratch/pawsey0000/data stripe_count: 4 stripe_size: 1048576 stripe_offset: -1 /scratch/pawsey0000/data/test.dat lmm_stripe_count: 4 [...]
Step-by-step guide: striping an existing file through migration
For retroactively setting the file layout on existing files. Migration will copy the file in place and spread it across the specified number of OSTs.
Check the current layout on the existing files to confirm they do not have the desired file layout:
Terminal 4. Check the file layout$ lfs getstripe /scratch/pawsey0000/data/test.dat /scratch/pawsey0000/data/test.dat lmm_stripe_count: 1 lmm_stripe_size: 1048576 [...]
Migrate the existing files with the desired file layout:
Terminal 5. File migration with file layout$ lfs migrate --stripe-count 4 --stripe-size 4m /scratch/pawsey0000/data/test.dat
Confirm that your changes have been set:
Terminal 6. Confirm the changes$ lfs getstripe /scratch/pawsey0000/data/test.dat /scratch/pawsey0000/data/test.dat lmm_stripe_count: 4 lmm_stripe_size: 4194304 [...]