diff --git a/doc.zih.tu-dresden.de/docs/data_lifecycle/workspaces.md b/doc.zih.tu-dresden.de/docs/data_lifecycle/workspaces.md index 9b2c13b48c485d327cd4817fdc301b293c98c70b..ceb4ebaace8b5bd91f2e1d380baf0cd3cdd6c99a 100644 --- a/doc.zih.tu-dresden.de/docs/data_lifecycle/workspaces.md +++ b/doc.zih.tu-dresden.de/docs/data_lifecycle/workspaces.md @@ -220,7 +220,7 @@ Options: ```console marie@login$ ws_allocate --filesystem walrus test-workspace 99 Info: creating workspace. - /lustre/ssd/ws/marie-test-workspace + /data/walrus/ws/marie-test-workspace remaining extensions : 2 remaining time in days: 99 ``` @@ -235,7 +235,7 @@ Options: ```console marie@login$ ws_allocate --reminder 7 --mailaddress marie@tu-dresden.de test-workspace 99 Info: creating workspace. - /horse/ws/marie-test-workspace + /data/horse/ws/marie-test-workspace remaining extensions : 10 remaining time in days: 99 ``` @@ -470,7 +470,7 @@ the following example (which works [for the program g16](../software/nanoscale_s ## The optional constraint for the filesystem feature depends ## on the filesystem on which you want to use a workspace. ## Documentation here https://compendium.hpc.tu-dresden.de/jobs_and_resources/slurm/#filesystem-features - #SBATCH --constraint=fs_lustre_ssd + #SBATCH --constraint=local_disk #SBATCH --cpus-per-task=24 # Load the software you need here @@ -487,7 +487,7 @@ the following example (which works [for the program g16](../software/nanoscale_s # Allocate workspace for this job. Adjust time span to time limit of the job (--duration). WSNAME=computation_$SLURM_JOB_ID - export WSDDIR=$(ws_allocate --filesystem ssd --name ${WSNAME} --duration 2) + export WSDDIR=$(ws_allocate --filesystem horse --name ${WSNAME} --duration 2) echo ${WSDIR} # Check allocation @@ -516,7 +516,7 @@ the following example (which works [for the program g16](../software/nanoscale_s if [ "TRUE" = ${COMPRESSION_SUCCESS} ]; then test -d ${WSDIR} && rm -rf ${WSDIR}/* # Reduces grace period to 1 day! - ws_release -F ssd ${WSNAME} + ws_release -F horse ${WSNAME} else echo "Error with compression and writing of results" echo "Please check the folder \"${WSDIR}\" for any partial(?) results."