Translations:Using node-local storage/11/en: Difference between revisions
Jump to navigation
Jump to search
(Importing a new version from external source) |
(Importing a new version from external source) |
||
Line 2: | Line 2: | ||
job ends. If a job times out, then the last few lines of the job script might not | job ends. If a job times out, then the last few lines of the job script might not | ||
be executed. This can be addressed three ways: | be executed. This can be addressed three ways: | ||
* | * request enough runtime to let the application finish, although we understand that this isn't always possible; | ||
* | * write [[Points_de_contrôle/en|checkpoints]] to network storage, not to <code>$SLURM_TMPDIR</code>; | ||
* | * write a signal trapping function. |
Latest revision as of 20:58, 20 March 2023
Output data must be copied from $SLURM_TMPDIR
back to some permanent storage before the
job ends. If a job times out, then the last few lines of the job script might not
be executed. This can be addressed three ways:
- request enough runtime to let the application finish, although we understand that this isn't always possible;
- write checkpoints to network storage, not to
$SLURM_TMPDIR
; - write a signal trapping function.