Deleting runpath is very slow
Open
- Dominant language
- Python
- Stars
- 161
- Forks
- 140
- Avg merge
- 2d 1h
- Merged PRs (30d)
- 132
Description
The runpath deletion can be very slow if you have hundreds of realizations lying on an NFS volume.
An alternative approach to awaiting `rm -rf` to finish is to something similar to:
```
mv myrunpath .myrunpath-under-deletion-
rm -rf .myrunpath-under-deletion<...> &
```
and then immediately start the ensemble.
Contributor guide
Assessment
This issue has not been assessed yet.