Nic*_*mas 6 python sftp paramiko python-3.x python-asyncio
我想使用Python将本地文件并行复制到多个远程主机.我正在尝试asyncio和Paramiko 一起做,因为我已经在我的程序中将这些库用于其他目的.
我正在使用BaseEventLoop.run_in_executor()和默认ThreadPoolExecutor,这实际上是旧threading库的新接口,以及Paramiko的SFTP功能来进行复制.
这是一个如何简化的例子.
import sys
import asyncio
import paramiko
import functools
def copy_file_node(
*,
user: str,
host: str,
identity_file: str,
local_path: str,
remote_path: str):
ssh_client = paramiko.client.SSHClient()
ssh_client.load_system_host_keys()
ssh_client.set_missing_host_key_policy(paramiko.client.AutoAddPolicy())
ssh_client.connect(
username=user,
hostname=host,
key_filename=identity_file,
timeout=3)
with ssh_client:
with ssh_client.open_sftp() as sftp:
print("[{h}] Copying file...".format(h=host))
sftp.put(localpath=local_path, remotepath=remote_path)
print("[{h}] Copy complete.".format(h=host))
loop = asyncio.get_event_loop()
tasks = []
# NOTE: You'll have to update the values being passed in to
# `functools.partial(copy_file_node, ...)`
# to get this working on on your machine.
for host in ['10.0.0.1', '10.0.0.2']:
task = loop.run_in_executor(
None,
functools.partial(
copy_file_node,
user='user',
host=host,
identity_file='/path/to/identity_file',
local_path='/path/to/local/file',
remote_path='/path/to/remote/file'))
tasks.append(task)
try:
loop.run_until_complete(asyncio.gather(*tasks))
except Exception as e:
print("At least one node raised an error:", e, file=sys.stderr)
sys.exit(1)
loop.close()
Run Code Online (Sandbox Code Playgroud)
我看到的问题是文件被串行复制到主机而不是并行复制.因此,如果单个主机的副本需要5秒钟,则两个主机需要10秒钟,依此类推.
我尝试了各种其他方法,包括放弃SFTP并将文件传输dd到每个远程主机上exec_command(),但副本总是串行发生.
我可能在这里误解了一些基本想法.什么阻止不同的线程并行复制文件?
从我的测试来看,似乎持久性发生在远程写入,而不是读取本地文件.但是为什么会这样,因为我们正在尝试针对独立远程主机的网络I/O?
您使用 asyncio 没有任何问题。
为了证明这一点,让我们尝试一下脚本的简化版本 - 没有paramiko,只有纯 Python。
import asyncio, functools, sys, time
START_TIME = time.monotonic()
def log(msg):
print('{:>7.3f} {}'.format(time.monotonic() - START_TIME, msg))
def dummy(thread_id):
log('Thread {} started'.format(thread_id))
time.sleep(1)
log('Thread {} finished'.format(thread_id))
loop = asyncio.get_event_loop()
tasks = []
for i in range(0, int(sys.argv[1])):
task = loop.run_in_executor(None, functools.partial(dummy, thread_id=i))
tasks.append(task)
loop.run_until_complete(asyncio.gather(*tasks))
loop.close()
Run Code Online (Sandbox Code Playgroud)
使用两个线程,将打印:
$ python3 async.py 2
0.001 Thread 0 started
0.002 Thread 1 started <-- 2 tasks are executed concurrently
1.003 Thread 0 finished
1.003 Thread 1 finished <-- Total time is 1 second
Run Code Online (Sandbox Code Playgroud)
此并发最多可扩展到 5 个线程:
$ python3 async.py 5
0.001 Thread 0 started
...
0.003 Thread 4 started <-- 5 tasks are executed concurrently
1.002 Thread 0 finished
...
1.005 Thread 4 finished <-- Total time is still 1 second
Run Code Online (Sandbox Code Playgroud)
如果我们再添加一个线程,就会达到线程池限制:
$ python3 async.py 6
0.001 Thread 0 started
0.001 Thread 1 started
0.002 Thread 2 started
0.003 Thread 3 started
0.003 Thread 4 started <-- 5 tasks are executed concurrently
1.002 Thread 0 finished
1.003 Thread 5 started <-- 6th task is executed after 1 second
1.003 Thread 1 finished
1.004 Thread 2 finished
1.004 Thread 3 finished
1.004 Thread 4 finished <-- 5 task are completed after 1 second
2.005 Thread 5 finished <-- 6th task is completed after 2 seconds
Run Code Online (Sandbox Code Playgroud)
一切都按预期进行,每 5 个项目总时间增加 1 秒。ThreadPoolExecutor文档中记录了幻数 5 :
在 version 3.5 中更改:如果指定或未指定max_workers
None,它将默认为机器上的处理器数量乘以5,假设 ThreadPoolExecutor 通常用于重叠 I/O 而不是 CPU 工作,并且工作线程数应该更高比 ProcessPoolExecutor 的工作线程数量多。
第三方库如何阻止我的 ThreadPoolExecutor?
库使用某种全局锁。这意味着该库不支持多线程。尝试使用 ProcessPoolExecutor,但要小心:库可能包含其他反模式,例如使用相同的硬编码临时文件名。
函数执行时间较长,不释放GIL。它可能表明 C 扩展代码中存在错误,但持有 GIL 的最常见原因是进行一些 CPU 密集型计算。同样,您可以尝试 ProcessPoolExecutor,因为它不受 GIL 的影响。
对于像 paramiko 这样的库来说,这些都不会发生。
第三方库如何阻止我的 ProcessPoolExecutor?
通常不能。您的任务在单独的进程中执行。如果您发现 ProcessPoolExecutor 中的两个任务花费了两倍的时间,则怀疑存在资源瓶颈(例如消耗 100% 的网络带宽)。