为什么SftpSession.write需要5秒才能上传小于1kB的文件?

时间:2019-05-10 20:43:23

标签: spring-integration jsch spring-integration-sftp

使用Spring Integration将文件上传到sftp需要980字节大小的文件,耗时5秒。我看到调用了jsch.ChannelSftp.put,但是sendCLOSE有时要等待5秒或更长时间。

我使用@MessagingGateway

@MessagingGateway
public interface TestUploadGateway {

    @Gateway(requestChannel = "uploadChannel")
    void upload(@Payload byte[] file, @Header("filename") String filename);

}

我希望上传是即时的,但需要将近5秒钟。 enter image description here

0 个答案:

没有答案