Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #106712 > unrolled thread
| Started by | Alexander Myodov <amyodov@gmail.com> |
|---|---|
| First post | 2016-04-08 16:54 -0700 |
| Last post | 2016-04-09 09:38 -0600 |
| Articles | 4 — 3 participants |
Back to article view | Back to comp.lang.python
(Python 3.5) Asyncio and an attempt to run loop.run_until_complete() from within a running loop Alexander Myodov <amyodov@gmail.com> - 2016-04-08 16:54 -0700
Re: (Python 3.5) Asyncio and an attempt to run loop.run_until_complete() from within a running loop "Frank Millman" <frank@chagford.com> - 2016-04-09 07:08 +0200
Re: (Python 3.5) Asyncio and an attempt to run loop.run_until_complete() from within a running loop Ian Kelly <ian.g.kelly@gmail.com> - 2016-04-09 09:14 -0600
Re: (Python 3.5) Asyncio and an attempt to run loop.run_until_complete() from within a running loop Ian Kelly <ian.g.kelly@gmail.com> - 2016-04-09 09:38 -0600
| From | Alexander Myodov <amyodov@gmail.com> |
|---|---|
| Date | 2016-04-08 16:54 -0700 |
| Subject | (Python 3.5) Asyncio and an attempt to run loop.run_until_complete() from within a running loop |
| Message-ID | <33e44698-2625-47c4-9595-00a8c79f27ad@googlegroups.com> |
Hello. TLDR: how can I use something like loop.run_until_complete(coro), to execute a coroutine synchronously, while the loop is already running? More on this: I was trying to create an aio_map(coro, iterable) function (which would asynchronously launch a coroutine for each iteration over iterable, and collect the data; similary to gevent.pool.Group.imap() from another async world), but stuck while attempting to make it well both from outside the async event loop and from inside one - any help? My code is at http://paste.pound-python.org/show/EQvN2cSDp0xqXK56dUPy/ - and I stuck around lines 22-28, with the problem that loop.run_until_complete() cannot be executed when the loop is running already (raising "RuntimeError: Event loop is running."). Is it normal? and why is it so restrictive? And what can I do to wait for `coros` Future to be finished? I tried various mixes of loop.run_forever() and even loop._run_once() there, but was not able to create a stable working code. Am I doing something completely wrong here? Am I expected to create a totally new event loop for synchronously waiting for the Future, if the current event loop is running - and if so, won't the previous event loop miss any its events? Thank you in advance. Alexander
[toc] | [next] | [standalone]
| From | "Frank Millman" <frank@chagford.com> |
|---|---|
| Date | 2016-04-09 07:08 +0200 |
| Message-ID | <mailman.107.1460178550.2253.python-list@python.org> |
| In reply to | #106712 |
"Alexander Myodov" wrote in message news:33e44698-2625-47c4-9595-00a8c79f27ad@googlegroups.com... > Hello. > TLDR: how can I use something like loop.run_until_complete(coro), to > execute a coroutine synchronously, while the loop is already running? I am no expert, but does this help? "If you're handling coroutines there is an asyncio facility for "background tasks". asyncio.ensure_future() will take a coroutine, attach it to a Task, and return a future to you that resolves when the coroutine is complete." This advice was given to me a while back when I wanted to run a background task. It works perfectly for me. Frank Millman
[toc] | [prev] | [next] | [standalone]
| From | Ian Kelly <ian.g.kelly@gmail.com> |
|---|---|
| Date | 2016-04-09 09:14 -0600 |
| Message-ID | <mailman.120.1460214919.2253.python-list@python.org> |
| In reply to | #106712 |
On Fri, Apr 8, 2016 at 5:54 PM, Alexander Myodov <amyodov@gmail.com> wrote:
> Hello.
>
> TLDR: how can I use something like loop.run_until_complete(coro), to execute a coroutine synchronously, while the loop is already running?
>
> More on this:
>
> I was trying to create an aio_map(coro, iterable) function (which would asynchronously launch a coroutine for each iteration over iterable, and collect the data; similary to gevent.pool.Group.imap() from another async world), but stuck while attempting to make it well both from outside the async event loop and from inside one - any help?
>
> My code is at http://paste.pound-python.org/show/EQvN2cSDp0xqXK56dUPy/ - and I stuck around lines 22-28, with the problem that loop.run_until_complete() cannot be executed when the loop is running already (raising "RuntimeError: Event loop is running."). Is it normal? and why is it so restrictive? And what can I do to wait for `coros` Future to be finished?
>
> I tried various mixes of loop.run_forever() and even loop._run_once() there, but was not able to create a stable working code. Am I doing something completely wrong here? Am I expected to create a totally new event loop for synchronously waiting for the Future, if the current event loop is running - and if so, won't the previous event loop miss any its events?
The code is short enough that it would be better to include it inline
in your email for posterity; this thread will be archived, but paste
URLs have a bad tendency of eventually disappearing.
> def aio_map(coro, iterable, loop=None):
> if loop is None:
> loop = asyncio.get_event_loop()
>
> async def wrapped_coro(coro, value):
> return await coro(value)
>
> coroutines = (wrapped_coro(coro, v) for v in iterable)
I'm not sure what value wrapped_coro adds here. Couldn't you just do:
coroutines = (coro(v) for v in interable)
Or even:
coroutines = map(coro, iterables)
> coros = asyncio.gather(*coroutines, return_exceptions=True, loop=loop)
>
> if not loop.is_running():
> loop.run_until_complete(coros)
> else: # problem starts here
> # If we run loop.run_until_complete(coros) as well,
> # we get 'RuntimeError: Event loop is running.'
Right, there's no need to run multiple event loops.
> asyncio.wait(coros)
This doesn't do anything. asyncio.wait is itself a coroutine, so all
this does is to instantiate the asyncio.wait coroutine and then
discard it without ever starting it.
Besides, you don't really want to do this. aio_map isn't a coroutine,
which means it's a synchronous call. In order for it to wait, it would
have to block the event loop thread, which means that the coroutines
it's waiting for would never finish!
This should get you the result that you're looking for:
def aio_map(coro, iterable, loop=None):
if loop is None:
loop = asyncio.get_event_loop()
coroutines = map(coro, iterable)
coros = asyncio.gather(*coroutines, return_exceptions=True, loop=loop)
if loop.is_running():
return coros
else:
return loop.run_until_complete(coros)
Note that this does something slightly different. Instead of returning
the *result* if we're running in the event loop, we're going to return
the *future* instead. This allows the *caller* to await the result, so
that you don't end up blocking the event thread.
This does mean that the pattern for calling aio_map from outside the
event loop is different from calling it inside the event loop. Your
main_loop coroutine becomes (note the addition of the "await"):
async def main_loop(loop):
results = list(await aio_map(fetch_aio, range(5)))
assert(results == [{'aio_arg': '0'}, {'aio_arg': '1'}, {'aio_arg':
'2'}, {'aio_arg': '3'}, {'aio_arg': '4'}]), results
print('Assert ok!')
[toc] | [prev] | [next] | [standalone]
| From | Ian Kelly <ian.g.kelly@gmail.com> |
|---|---|
| Date | 2016-04-09 09:38 -0600 |
| Message-ID | <mailman.124.1460216327.2253.python-list@python.org> |
| In reply to | #106712 |
On Sat, Apr 9, 2016 at 9:14 AM, Ian Kelly <ian.g.kelly@gmail.com> wrote:
> On Fri, Apr 8, 2016 at 5:54 PM, Alexander Myodov <amyodov@gmail.com> wrote:
> This does mean that the pattern for calling aio_map from outside the
> event loop is different from calling it inside the event loop. Your
> main_loop coroutine becomes (note the addition of the "await"):
>
> async def main_loop(loop):
> results = list(await aio_map(fetch_aio, range(5)))
> assert(results == [{'aio_arg': '0'}, {'aio_arg': '1'}, {'aio_arg':
> '2'}, {'aio_arg': '3'}, {'aio_arg': '4'}]), results
> print('Assert ok!')
As a final afterthought, note that the result of asyncio.gather is
already a list, so wrapping it in a list() call here is redundant.
[toc] | [prev] | [standalone]
Back to top | Article view | comp.lang.python
csiph-web