...
The storage system is hard-disk based with NVMe Cache on first write.
Status | ||||
---|---|---|---|---|
|
lfs setstripe
(specific to this file or for a whole directory, changes apply only for new files, so applying a new striping to an existing file requires a file copy) with a sensible stripe_count
(recommendation: Lise up to 8) and a stripe_size
, which is a multiple of the RAID6 fullstripe size and matches the IO sizes of your job.A general recommendation for network filesystems is to keep the number of metadata operations for open and closing files, as well as checks for file existence or changes as low as possible. These operations often become a bottleneck for the IO of your job and on large clusters can easily overload the file servers.
...