Skip to content
Snippets Groups Projects
Commit b461b5dd authored by Martin Schroschk's avatar Martin Schroschk
Browse files

Remove outdated content

parent 781cf789
No related branches found
No related tags found
2 merge requests!1133Automated merge from preview to main,!1118Remove beegfs from documentation
......@@ -420,25 +420,3 @@ In the following we provide two examples for scripts that submit chain jobs.
Job 3/3: jobfile_c.sh
Dependency: after job 2963709
```
## Array-Job with Afterok-Dependency and Datamover Usage
In this example scenario, imagine you need to move data, before starting the main job.
For this you may use a data transfer job and tell Slurm to start the main job immediately after
data transfer job successfully finish.
First you have to start your data transfer job, which for example transfers your input data from one
workspace to another.
```console
marie@login$ export DATAMOVER_JOB=$(dtcp /scratch/ws/1/marie-source/input.txt /beegfs/ws/1/marie-target/. | awk '{print $4}')
```
Now you can refer to the job id of the Datamover jobs from your work load jobs.
```console
marie@login$ srun --dependency afterok:${DATAMOVER_JOB} ls /beegfs/ws/1/marie-target
srun: job 23872871 queued and waiting for resources
srun: job 23872871 has been allocated resources
input.txt
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment