How severe does this issue affect your experience of using Ray?
- Low: It annoys me.
When running an algorithm I see that the ray.train.constants.py
(line 20) file creates a default storage directory.
DEFAULT_STORAGE_PATH = Path("~/ray_results").expanduser().as_posix()
When submitting jobs on a system like HPC, often we are not allowed to write to the home dir directly. Instead permission is only granted to make changes in the project directory. This above line throws an error.
I can work my way around it by directly changing that variable however I would be great if there was a way to set a global variable like RAY_DEFAULT_STORAGE instead.