我见过asyncio.gather vs asyncio.wait,但不确定是否可以解决这个特定问题。我想做的是将asyncio.gather()
协程包装在asyncio.wait_for()
中,并带有一个timeout
参数。我还需要满足以下条件:
return_exceptions=True
(来自asyncio.gather()
)-我想在结果中包括异常实例,而不是将异常传播到等待gather()
的任务上asyncio.gather()
的属性,即结果的顺序与输入的顺序相同。 (否则,将输出映射回输入。)。 asyncio.wait_for()
未能达到此标准,我不确定实现此标准的理想方法。超时是整个等待列表中的整个 asyncio.gather()
-如果它们陷入超时或返回异常,则这两种情况中的任何一种都应仅放置一个异常实例在结果列表中。
考虑此设置:
>>> import asyncio
>>> import random
>>> from time import perf_counter
>>> from typing import Iterable
>>> from pprint import pprint
>>>
>>> async def coro(i, threshold=0.4):
... await asyncio.sleep(i)
... if i > threshold:
... # For illustration's sake - some coroutines may raise,
... # and we want to accomodate that and just test for exception
... # instances in the results of asyncio.gather(return_exceptions=True)
... raise Exception("i too high")
... return i
...
>>> async def main(n, it: Iterable):
... res = await asyncio.gather(
... *(coro(i) for i in it),
... return_exceptions=True
... )
... return res
...
>>>
>>> random.seed(444)
>>> n = 10
>>> it = [random.random() for _ in range(n)]
>>> start = perf_counter()
>>> res = asyncio.run(main(n, it=it))
>>> elapsed = perf_counter() - start
>>> print(f"Done main({n}) in {elapsed:0.2f} seconds") # Expectation: ~1 seconds
Done main(10) in 0.86 seconds
>>> pprint(dict(zip(it, res)))
{0.01323751590501987: 0.01323751590501987,
0.07422124156714727: 0.07422124156714727,
0.3088946587429545: 0.3088946587429545,
0.3113884366691503: 0.3113884366691503,
0.4419557492849159: Exception('i too high'),
0.4844375347808497: Exception('i too high'),
0.5796792804615848: Exception('i too high'),
0.6338658027451068: Exception('i too high'),
0.7426396870165088: Exception('i too high'),
0.8614799253779063: Exception('i too high')}
上面带有n = 10
的程序的预期运行时间为.5秒,异步运行时会产生一些开销。 ({random.random()
将均匀分布在[0,1)中。)
比方说,我想在整个操作(即协程main()
)上将此作为超时设置:
timeout = 0.5
现在,我可以使用asyncio.wait()
,但是问题是结果是set
个对象,因此绝对不能保证asyncio.gather()
的排序返回值属性:
>>> async def main(n, it, timeout) -> tuple:
... tasks = [asyncio.create_task(coro(i)) for i in it]
... done, pending = await asyncio.wait(tasks, timeout=timeout)
... return done, pending
...
>>> timeout = 0.5
>>> random.seed(444)
>>> it = [random.random() for _ in range(n)]
>>> start = perf_counter()
>>> done, pending = asyncio.run(main(n, it=it, timeout=timeout))
>>> for i in pending:
... i.cancel()
>>> elapsed = perf_counter() - start
>>> print(f"Done main({n}) in {elapsed:0.2f} seconds")
Done main(10) in 0.50 seconds
>>> done
{<Task finished coro=<coro() done, defined at <stdin>:1> exception=Exception('i too high')>, <Task finished coro=<coro() done, defined at <stdin>:1> exception=Exception('i too high')>, <Task finished coro=<coro() done, defined at <stdin>:1> result=0.3088946587429545>, <Task finished coro=<coro() done, defined at <stdin>:1> result=0.3113884366691503>, <Task finished coro=<coro() done, defined at <stdin>:1> result=0.01323751590501987>, <Task finished coro=<coro() done, defined at <stdin>:1> result=0.07422124156714727>}
>>> pprint(done)
{<Task finished coro=<coro() done, defined at <stdin>:1> exception=Exception('i too high')>,
<Task finished coro=<coro() done, defined at <stdin>:1> result=0.3113884366691503>,
<Task finished coro=<coro() done, defined at <stdin>:1> result=0.07422124156714727>,
<Task finished coro=<coro() done, defined at <stdin>:1> exception=Exception('i too high')>,
<Task finished coro=<coro() done, defined at <stdin>:1> result=0.01323751590501987>,
<Task finished coro=<coro() done, defined at <stdin>:1> result=0.3088946587429545>}
>>> pprint(pending)
{<Task cancelled coro=<coro() done, defined at <stdin>:1>>,
<Task cancelled coro=<coro() done, defined at <stdin>:1>>,
<Task cancelled coro=<coro() done, defined at <stdin>:1>>,
<Task cancelled coro=<coro() done, defined at <stdin>:1>>}
如上所述,问题是我似乎无法将task
实例映射回iterable
中的输入。它们的任务ID在tasks = [asyncio.create_task(coro(i)) for i in it]
的功能范围内实际上丢失了。是否在这里使用Python方式/异步API来模仿asyncio.gather()
的行为?
答案 0 :(得分:0)
看看底层的_wait()
协程,此协程将传递一个任务列表,并将修改这些任务的状态。这意味着在main()
范围内,tasks
中的tasks = [asyncio.create_task(coro(i)) for i in it]
将通过对await asyncio.wait(tasks, timeout=timeout)
的调用而被修改。一种解决方法是只返回(done, pending)
本身,而不是返回tasks
元组,它保留输入it
的顺序。 wait()
/ _wait()
只是将任务分为完成/待处理子集,在这种情况下,我们可以丢弃这些子集,并使用元素已更改的tasks
的整个列表。
在这种情况下,有三种可能的任务状态:
coro()
)没有引发异常,并且在timeout
下完成了。其.cancelled()
将为False,并且它具有有效的.result()
而不是异常实例.cancelled()
,其.exception()
将引发CancelledError
coro()
引发异常;它会显示.cancelled()
为False,它的exception()
会出现(所有这些都放在asyncio/futures.py中。)
插图:
>>> # imports/other code snippets - see question
>>> async def main(n, it, timeout) -> tuple:
... tasks = [asyncio.create_task(coro(i)) for i in it]
... await asyncio.wait(tasks, timeout=timeout)
... return tasks # *not* (done, pending)
>>> timeout = 0.5
>>> random.seed(444)
>>> n = 10
>>> it = [random.random() for _ in range(n)]
>>> start = perf_counter()
>>> tasks = asyncio.run(main(n, it=it, timeout=timeout))
>>> elapsed = perf_counter() - start
>>> print(f"Done main({n}) in {elapsed:0.2f} seconds")
Done main(10) in 0.50 seconds
>>> pprint(tasks)
[<Task finished coro=<coro() done, defined at <stdin>:1> result=0.3088946587429545>,
<Task finished coro=<coro() done, defined at <stdin>:1> result=0.01323751590501987>,
<Task finished coro=<coro() done, defined at <stdin>:1> exception=Exception('i too high')>,
<Task cancelled coro=<coro() done, defined at <stdin>:1>>,
<Task cancelled coro=<coro() done, defined at <stdin>:1>>,
<Task cancelled coro=<coro() done, defined at <stdin>:1>>,
<Task finished coro=<coro() done, defined at <stdin>:1> exception=Exception('i too high')>,
<Task finished coro=<coro() done, defined at <stdin>:1> result=0.3113884366691503>,
<Task finished coro=<coro() done, defined at <stdin>:1> result=0.07422124156714727>,
<Task cancelled coro=<coro() done, defined at <stdin>:1>>]
现在从上面开始应用逻辑,该逻辑使res
保持与输入相对应的顺序:
>>> res = []
>>> for t in tasks:
... try:
... r = t.result()
... except Exception as e:
... res.append(e)
... else:
... res.append(r)
>>> pprint(res)
[0.3088946587429545,
0.01323751590501987,
Exception('i too high'),
CancelledError(),
CancelledError(),
CancelledError(),
Exception('i too high'),
0.3113884366691503,
0.07422124156714727,
CancelledError()]
>>> dict(zip(it, res))
{0.3088946587429545: 0.3088946587429545,
0.01323751590501987: 0.01323751590501987,
0.4844375347808497: Exception('i too high'),
0.8614799253779063: concurrent.futures._base.CancelledError(),
0.7426396870165088: concurrent.futures._base.CancelledError(),
0.6338658027451068: concurrent.futures._base.CancelledError(),
0.4419557492849159: Exception('i too high'),
0.3113884366691503: 0.3113884366691503,
0.07422124156714727: 0.07422124156714727,
0.5796792804615848: concurrent.futures._base.CancelledError()}