Scratch storages
Scratch storage is a storage for temporary files for running job. This storage should be used only during computations and should be freed immediately after your job ends. The location of scratch directory is defined by a system variable SCRATCHDIR
.
Scratch types
We offer four types of scratch storage:
No default scratch
For a batch job, you must set the size and type of scratchdir! There is no default type of scratch.
Directory SCRATCHDIR
is not writable, only it’s content is. Therefore, you cannot, e.g. do rm -rf $SCRATCHDIR
, but you can rm -rf $SCRATCHDIR/*
.
Users should always clear the content of the scratch directory after the job ends to free disc space. Otherwise, this directory will be automatically deleted after 14 days at most (earlier if there is lack of space on disks).
Examples:
Submit batch job with 100 GB scratch on local disc:
Submit the interactive job with 20 GB memory and scratch in RAM:
Submit batch job with 1 GB of scratch on SSD disc:
System variables
Last updated on