Replies: 1 comment
-
Connection - no, but kind of handshake - yes. open file, read file, close file.. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I was copying not too many (~1000) tiny (under 1K) files onto a slow sftp server, and it took ages (about 20 min).
Is it because sftp needs to open a connection and do protocol handshakes for each file?
Wouldn't
rsync
be much faster? I believe it sends all the files in-band in one connection and with a single handshake.Or is there something else to fix up?
Beta Was this translation helpful? Give feedback.
All reactions