How to prevent my app from hanging when parallelising paramiko.SFTPClient.get requests?(如何防止我的应用在并行化paramiko.SFTPClient.get请求时挂起?)
本文介绍了如何防止我的应用在并行化paramiko.SFTPClient.get请求时挂起?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试通过SFTP从服务器并行检索文件并上传到AWS。我使用的是python多线程,上传部分工作得很好,但是我注意到paramiko.SFTPClient
的get操作使程序在最后挂起。事实上,所有文件都被撤回并上传,但程序并不退出。我尝试了很多类似帖子的东西,但是都不管用,我的伪代码如下,欢迎任何帮助:
def create_sftp_connection(host, port, username, password):
transport = paramiko.Transport((host, port))
transport.connect(username, password)
sftp_client = paramiko.SFTPClient.from_transport(transport)
def get_and_upload_file(s3, sftp_client, file, local_full_path, destination_bucket, cloud_path):
sftp_client.get(file, local_full_path)
upload_file_to_s3(s3, local_full_path, destination_bucket, cloud_path)
def transfer_files(sftp_client, remote_path, local_path, destination_bucket):
all_files = get_files_to_transfer(sftp_client, remote_path)
s3 = init_s3()
threads = list()
for file in all_files:
....
thread = threading.Thread(target=get_and_upload_file, args=(s3, sftp_client, file, local_full_path, destination_bucket, cloud_path))
thread.daemon = True
threads.append(thread)
thread.start()
for thread in threads:
thread.join()
if __name__ == "__main__":
sftp_client = create_sftp_connection(host, port, username, password)
transfer_files(sftp_client, remote_path, local_path, destination_bucket)
注意:我还尝试使用以下命令等待线程停止:
for thread in threads:
while thread.is_alive():
thread.join(timeout=0.1)
推荐答案
我非常确定Paramiko不是线程安全的。
您很可能需要为每个线程创建单独的连接(Transport
)。
创建少量连接,并让它们从共享列表/队列中挑选文件。无论如何,并行上载多个或几个文件是没有意义的。
这篇关于如何防止我的应用在并行化paramiko.SFTPClient.get请求时挂起?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:如何防止我的应用在并行化paramiko.SFTPClient.get请求时挂起?
基础教程推荐
猜你喜欢
- 如何在Python中绘制多元函数? 2022-01-01
- 使用Python匹配Stata加权xtil命令的确定方法? 2022-01-01
- 哪些 Python 包提供独立的事件系统? 2022-01-01
- 使用 Google App Engine (Python) 将文件上传到 Google Cloud Storage 2022-01-01
- 如何在 Python 中检测文件是否为二进制(非文本)文 2022-01-01
- 使 Python 脚本在 Windows 上运行而不指定“.py";延期 2022-01-01
- Python 的 List 是如何实现的? 2022-01-01
- 将 YAML 文件转换为 python dict 2022-01-01
- 症状类型错误:无法确定关系的真值 2022-01-01
- 合并具有多索引的两个数据帧 2022-01-01