Hi @<1523701260895653888:profile|QuaintJellyfish58> , I think where your code runs depends on where the clearml cache is. Search clearml.conf
for cache
under agent configuration 🙂
oh okay, so i need to set that to path ssd, yeah?
is it this one? or there is
docker_internal_mounts {
sdk_cache: "/clearml_agent_cache"
apt_cache: "path/to/ssd/apt-cache"
ssh_folder: "/root/.ssh"
pip_cache: "path/to/ssd/clearml-cache/pip"
poetry_cache: "/mnt/hdd_2/clearml-cache/pypoetry"
vcs_cache: "path/to/ssd/clearml-cache/vcs-cache"
venv_build: "path/to/ssd/clearml-cache/venvs-builds"
pip_download: "path/to/ssd/clearml-cache/pip-download-cache"
}
do i need to set this?
# target folder for virtual environments builds, created when executing experiment
venvs_dir = /mnt/hdd_2/clearml-cache/venvs-builds
# cached virtual environment folder
venvs_cache: {
# maximum number of cached venvs
max_entries: 10
# minimum required free space to allow for cache entry, disable by passing 0 or negative value
free_space_threshold_gb: 20.0
# unmark to enable virtual environment caching
path: /mnt/hdd_2/clearml-cache/venvs-cache
},
# cached git clone folder
vcs_cache: {
enabled: true,
path: /mnt/hdd_2/clearml-cache/vcs-cache
},
# use venv-update in order to accelerate python virtual environment building
# Still in beta, turned off by default
venv_update: {
enabled: false,
},
# cached folder for specific python package download (used for pytorch package caching)
pip_download_cache: {
enabled: true,
path: /mnt/hdd_2/clearml-cache/pip-download-cache
},
translate_ssh: true,
# reload configuration file every daemon execution
reload_config: false,
# pip cache folder mapped into docker, used for python package caching
docker_pip_cache = /mnt/hdd_2/clearml-cache/pip-cache
# apt cache folder mapped into docker, used for ubuntu package caching
docker_apt_cache = /mnt/hdd_2/clearml-cache/apt-cache