我不确定我的问题是存在于Spring Integration还是JCraft的Jsch中。我在服务器上有一个应用程序,它接收文件并使用SFTP和会话池将它们放在另一台服务器上。我经常收到以下开头的赌注痕迹:
java.lang.IllegalStateException: failed to create SFTP Session
Caused by: java.lang.IllegalStateException: failed to create SFTP Session
Caused by: java.lang.IllegalStateException: failed to connect...
并以下列例外之一结束:
Caused by: com.jcraft.jsch.JSchException: session is down
at com.jcraft.jsch.Channel.sendChannelOpen(Channel.java:762)
或
Caused by: com.jcraft.jsch.JSchException: SSH_MSG_DISCONNECT: 11 This session would exceed your concurrent session limit. Please disconnect one or more of your existing sessions and try again.
at com.jcraft.jsch.Session.read(Session.java:996)
at com.jcraft.jsch.UserAuthPublicKey.start(UserAuthPublicKey.java:198)
at com.jcraft.jsch.Session.connect(Session.java:463)
at com.jcraft.jsch.Session.connect(Session.java:183)
at org.springframework.integration.sftp.session.SftpSession.connect(SftpSession.java:263)
或
Caused by: com.jcraft.jsch.JSchException: channel is not opened.
at com.jcraft.jsch.Channel.sendChannelOpen(Channel.java:765)
或
Caused by: com.jcraft.jsch.JSchException: SSH_MSG_DISCONNECT: 2 FlowSshPacketDecoder: received a higher-level packet before first key exchange is done
at com.jcraft.jsch.Session.read(Session.java:996)
at com.jcraft.jsch.Session.connect(Session.java:323)
at com.jcraft.jsch.Session.connect(Session.java:183)
at org.springframework.integration.sftp.session.SftpSession.connect(SftpSession.java:263)
... 45 more
这些例外通常以小组形式发生。例如,我可能会在一分钟内连续三次或四次关闭Session。他们有时候也是混合的,所以也许我会得到频道不开放,会话失败。有时,它可以完美地运行而不会抛出异常。
我的豆子:
<bean id="cachingSessionFactory"
class="org.springframework.integration.file.remote.session.CachingSessionFactory">
<constructor-arg ref="sftpSessionFactory" />
</bean>
<bean id="sftpSessionFactory"
class="org.springframework.integration.sftp.session.DefaultSftpSessionFactory">
<constructor-arg name="isSharedSession" value="true"/>
<property name="host" value="${SERVER}" />
<property name="port" value="22" />
<property name="user" value="${USER}" />
<property name="privateKey" value="${KEYPATH}" />
<property name="sessionConfig" ref="props"/>
</bean>
它连接的服务器的maxSessions设置为30,连接超时为6分钟。我花了几天时间试图调试错误,但似乎无法再现它们。
答案 0 :(得分:0)
多线程是我的问题的问题。我的应用程序将收到一次推送多个文件的请求(例如20+)。问题是会话将过时,但现在有20多个线程正在尝试创建新会话。它接到的服务器只能同时允许6个sftp连接。
我的解决方案是通过添加
来防止会话断开连接<property name="serverAliveInterval" value="60000" />
到我的豆子里。这会阻止连接变得陈旧,不利的是它始终连接(占用资源)。我想如果我想解决线程问题,我将不得不删除Spring并直接使用Jsch。