sshnet / sshnet/SSH.NET

Connection Open while processing a file for 45minutes then the session is not open

Open
#968 0 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Dominant language
C#
Stars
4.4k
Forks
993
Avg merge
9d 21h
Merged PRs (30d)
1

Description

Hello, I connect via SFTP Renci and begin processing a file. It takes 45minutes to 1 hour and then finishes. I then try to move the file using sftpclient.Moveto but i get the error that "the session is not open". This was not an issue for smaller files that processed within a few minutes.

It seems to be timing out the connection when opened for too long. How can I extend it?
I've tried the below but it's still not working

                    client.KeepAliveInterval = TimeSpan.FromSeconds(30);
                    client.ConnectionInfo.Timeout = TimeSpan.FromMinutes(150);
                    client.OperationTimeout = TimeSpan.FromMinutes(150);
                    client.Connect();

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Start with the SFTP connection lifecycle around SftpClient.MoveTo and the KeepAliveInterval, ConnectionInfo.Timeout, and OperationTimeout settings shown in the report. Reproduce the 45–60 minute file-processing case and determine whether the session remains open afterward; done means identifying a confirmed fix or documenting the missing configuration or limitation.

Written by the indexing model from the issue text.

Assessment

Tech stack
csharp
Domain
networking
Issue type
Bug
Difficulty
4/5
Estimated time
3-5 days
Activity status
Stale
Clarity
Needs clarification
Newbie friendliness
30/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.