|
|
|
|
|
by bilekas
264 days ago
|
|
This is actually kind of cool, I've implemented my own version of this for my job and seems to be something that's important when the numbers gets tight, but if I remember correctly for their case i guess, wouldn't it have been easier to work from rsynch? > scp always copies full files, there is no "delta mode" to copy only the things that changed, it is slow for many small files, and there is no fast compression. I havent tried it myself but doesnt this already suit that requirement ?
https://docs.rc.fas.harvard.edu/kb/rsync/ > Compression
If the SOURCE and DESTINATION are on different machines with fast CPUs, especially if they’re on different networks (e.g. your home computer and the FASRC cluster), it’s recommended to add the -z option to compress the data that’s transferred.
This will cause more CPU to be used on both ends, but it is usually faster. Maybe it's not fast enough, but seems a better place to start than scp imo. |
|