43 | | * remove files so far |
44 | | * reduce problem by using *tmp file and and only 'mv' if step succesful |
45 | | * however, this doesn't work if we want to restart |
46 | | * could use folders per step, so you could delete the folders from step onwards |
47 | | * can be solved by good practice |
| 43 | * Remove files for the step from which to restart as well as for all steps that depend on that one. |
| 44 | * Reduce problem by using *tmp file and and only 'mv' if step is successful (as automatically determined by compute) |
| 45 | * However, this doesn't work if we want to restart from a step that was successful as automatically determined by compute, but has failed as manually determined by a user. |
| 46 | * Could use folders per step, so you could more easily delete all output from a specific step onwards |
| 47 | * Can be solved by good practice -> Compute should assist users as much as possible to standardize good practice and make it as easy as possible. |