我想异步并发地执行任务。如果task1
到达时task2
正在运行,则task2
立即启动,而无需等待task2
完成。另外,我想避免在协程的帮助下进行回调。
这是带有回调的并发解决方案:
def fibonacci(n):
if n <= 1:
return 1
return fibonacci(n - 1) + fibonacci(n - 2)
class FibonacciCalculatorFuture:
def __init__(self):
self.pool = ThreadPoolExecutor(max_workers=2)
@staticmethod
def calculate(n):
print(f"started n={n}")
return fibonacci(n)
def run(self, n):
future = self.pool.submit(self.calculate, n)
future.add_done_callback(lambda f: print(f.result()))
if __name__ == '__main__':
calculator = FibonacciCalculatorFuture()
calculator.run(35)
calculator.run(32)
print("initial thread can continue its work")
其输出:
started n=35
started n=32
initial thread can continue its work
3524578
14930352
这是我摆脱回调的努力:
class FibonacciCalculatorAsync:
def __init__(self):
self.pool = ThreadPoolExecutor(max_workers=2)
self.loop = asyncio.get_event_loop()
@staticmethod
def calculate_sync(n):
print(f"started n={n}")
return fibonacci(n)
async def calculate(self, n):
result = await self.loop.run_in_executor(self.pool, self.calculate_sync, n)
print(result)
def run(self, n):
asyncio.ensure_future(self.calculate(n))
if __name__ == '__main__':
calculator = FibonacciCalculatorAsync()
calculator.run(35)
calculator.run(32)
calculator.loop.run_forever()
print("initial thread can continue its work")
输出:
started n=35
started n=32
3524578
14930352
在这种情况下,初始线程不能超出loop.run_forever()
,因此将无法接受新任务。
所以,这是我的问题:有没有一种方法可以同时实现:
答案 0 :(得分:1)
loop.run_forever()
实际上将永远运行,即使其中没有任何任务。好消息是您不需要此功能。为了等待您的计算完成,请使用asyncio.gather
:
class FibonacciCalculatorAsync:
def __init__(self):
self.pool = ThreadPoolExecutor(max_workers=2)
# self.loop = asyncio.get_event_loop()
...
async def calculate(self, n):
loop = asyncio.get_running_loop()
result = await loop.run_in_executor(self.pool, self.calculate_sync, n)
print(result)
async def main():
calculator = FibonacciCalculatorAsync()
fib_35 = asyncio.ensure_future(calculator.run(35))
fib_32 = asyncio.ensure_future(calculator.run(32))
print("initial thread can continue its work")
...
# demand fibonaccy computation has ended
await asyncio.gather(fib_35, fib_32)
if __name__ == '__main__':
asyncio.run(main())
请注意这里如何处理循环-我做了几件事。如果您开始使用asyncio,我实际上建议对所有内容使用一个循环,而不是为更细化的任务创建循环。通过这种方法,您可以获得用于处理和同步任务的所有异步bells and whistles。
此外,由于GIL,无法在ThreadPoolExecutor
中并行化纯Python非IO代码。请记住这一点,在这种情况下,最好使用进程池执行程序。
答案 1 :(得分:0)
问题的第二个要点可以通过在专用线程中运行asyncio并使用asyncio.run_coroutine_threadsafe
来安排协程来解决。例如:
class FibonacciCalculatorAsync:
def __init__(self):
self.pool = ThreadPoolExecutor(max_workers=2)
self.loop = asyncio.get_event_loop()
@staticmethod
def calculate_sync(n):
print(f"started n={n}")
return fibonacci(n)
async def calculate(self, n):
result = await self.loop.run_in_executor(self.pool, self.calculate_sync, n)
print(result)
def run(self, n):
asyncio.run_coroutine_threadsafe(self.calculate(n), self.loop)
def start_loop(self):
thr = threading.Thread(target=self.loop.run_forever)
thr.daemon = True
thr.start()
if __name__ == '__main__':
calculator = FibonacciCalculatorAsync()
calculator.start_loop()
calculator.run(35)
calculator.run(32)
print("initial thread can continue its work")
calculator.run(10)
time.sleep(1)