Hi, I want to perform the following configuration, as discussed at this discord message and the following 10-20 messages:
dvc remote add compute_server ssh://[compute_server_IP]/ --global
dvc remote modify compute_server user [OUR_USERNAME] --global
dvc remote modify compute_server port 22 --global
dvc remote modify compute_server keyfile [PATH_TO_OUR_SSH_KEY] --global
dvc remote add compute_server_project_cache remote://compute_server/dvc_project_cache
dvc config cache.ssh compute_server_project_cache
This would enable each team member to have one global remote to connect to the compute server and one DVC repository specify (i.e. project specify) remote SSH cache. It also enables the compute server to have on cache folder per project, which simplifies dvc gc, i.e. cache garbage collection.
Hi, I want to perform the following configuration, as discussed at this discord message and the following 10-20 messages:
This would enable each team member to have one global remote to connect to the compute server and one DVC repository specify (i.e. project specify) remote SSH cache. It also enables the compute server to have on cache folder per project, which simplifies
dvc gc, i.e. cache garbage collection.