Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SftpClient: slow download #1331

Open
goremykin opened this issue Feb 20, 2024 · 5 comments
Open

SftpClient: slow download #1331

goremykin opened this issue Feb 20, 2024 · 5 comments

Comments

@goremykin
Copy link

goremykin commented Feb 20, 2024

Hi! Thank you for this project, I appreciate your work.

I have a job in js that downloads some files over sftp every night using ssh2-sftp-client.
I decided to rewrite this job in C# using SSH.NET, but it turned out that the same files are now downloaded up to 15 times slower.
For example, a 25 MB file can be downloaded in 5 seconds using ssh2-sftp-client and in over a minute using SSH.NET.

I tested on ubuntu and arch linux in a simple .net 8 project. SSH.NET version - 2023.0.1.

using var sftpClient = new SftpClient(host, port, userName, password);
await using (var localFileStream = new FileStream("/someFile", FileMode.Create, FileAccess.Write))
{
    sftpClient.DownloadFile(file.FullName, localFileStream);
}

In case of reading from a stream it even slower:

await using var remoteStream = await sftpClient.OpenAsync("/someFile", FileMode.Open, FileAccess.Read, CancellationToken.None);
await remoteStream.CopyToAsync(localFileStream);

Do you have any ideas on what I should check or what settings I should play with?

@scott-xu
Copy link
Collaborator

scott-xu commented Feb 21, 2024

Not sure if it relates to compression. Do you know if your SSH service supports and only supports compression?
Well, I don't think it relates to compression.

@Waynezhi
Copy link

Waynezhi commented May 3, 2024

Same situation, using 2024.0.0, download speed is around 1MB/s only on a sftp server (protocol v3), and same environment with sftp command I got 15MB/s. @WojciechNagorski

@goremykin
Copy link
Author

Can confirm the same issue with 2024.0.0

@Waynezhi
Copy link

Waynezhi commented May 7, 2024

I tried with 2024.0.0 and 2023.0.1, same result @goremykin, with .net 6
#733
#1122

seems this fix does not work for me: #866

@Rob-Hague
Copy link
Collaborator

There has been no recent investigation into SFTP performance that I know of. If you make an investigation, please do share your findings. Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants