与Apache Commons-vfs2的连接过多

时间:2018-11-06 21:34:54

标签: java apache sftp apache-commons apache-commons-vfs

我有一个需要从sftp下载文件的应用程序。 我目前正在使用apache commons-vfs2

我有一个每1分钟运行一次的调度程序。  1.获取远程文件列表(打开连接,获取列表,然后关闭连接)  2.从第1步下载文件(打开连接,下载每个文件,然后关闭连接)

如何保持最小连接? 有没有办法限制我与commons-vfs2的连接数量?

这是我的代码

private List<FileObject> getRemoteFilesList() throws FileSystemException {
        FileObject[] remoteFiles;
        try {
            manager.init();
            final @Cleanup FileObject remoteDirectoryObject = manager.resolveFile(uri, fileSystemOptions);
            remoteFiles = remoteDirectoryObject.getChildren();

        } finally {
            manager.freeUnusedResources();
            manager.close();
        }
        return Arrays.stream(remoteFiles)
                     .collect(Collectors.toList());
    }

private List<File> downloadRemoteFiles(final List<FileObject> remoteFiles) {
        if(remoteFiles.isEmpty()) {
            return Collections.emptyList();
        }

        final List<File> myCollection = new ArrayList<>();
        try {
            manager.init();

            for (final FileObject myfile : remoteFiles) {
                final File localFile = downloadFile(myfile);
                myCollection.add(localFile);
                myfile.delete();
            }
        } catch (final IOException exception) {
            log.warn("Unable to download because ", exception);
        } finally {
            manager.freeUnusedResources();
            manager.close();
        }
        return myCollection;
    }

2 个答案:

答案 0 :(得分:0)

VFS(https://wiki.apache.org/commons/VfsFaq)的apache commons Wiki表示在某些情况下关闭SFTP连接时使用以下内容:

((DefaultFileSystemManager) fsManager).close();

这将强制调用close上的DefaultFileSystemManager方法,而不是close类上的FileSystemManager方法。

这可能不是您的问题,但这可能与您有关。

答案 1 :(得分:0)

您可以尝试使用这种替代方法来清理所有临时文件并关闭所有提供程序。

FileObject src = null;

/**
 * Release system resources, close connection to the filesystem. 
 */
public void release() {
    FileSystem fs = null;

    this.src.close(); // Seems to still work even if this line is omitted
    fs = this.src.getFileSystem(); // This works even after the src is closed.
    this.fsManager.closeFileSystem(fs);
}

更多详细信息,请访问:https://cwiki.apache.org/confluence/display/COMMONS/SimpleSftpFileDownload