Hello,
I would like to upload files on the cluster and each weights around 1To.
Does this seems feasible with ssh protocole ? Or it might be interrupted each times ?
PS : sorry if it’s a dumb question but i’d rather know before trying.
Ewen
Hello,
This is totally feasible with the SSH protocol.
You can find documentation here: https://ifb-elixirfr.gitlab.io/cluster/doc/data/data/#transfer
For large files or a large number of files, I recommend using rsync
(which can use the SSH protocol: rsync -e ssh ...
).
You can relaunch the command as many times as needed — the transfer will continue only for the missing files.
This is particularly useful in case of network interruptions or to ensure that all your files are correctly transferred.