You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
uvloop is a fast (C) replacement for the built-in asyncio event loop (Python) that uses the libuv event loop.
Basically it makes asyncio go faster so should make async code more responsive. As the Cylc codebase becomes increasingly async this switch will help Cylc efficiency.
The results of profiling this problematic workflow revealed that the asyncio.ensure_future method was consuming a reasonable amount of CPU. It's likely that uvloop will have lower overheads for these operations.
The text was updated successfully, but these errors were encountered:
uvloop is a fast (C) replacement for the built-in asyncio event loop (Python) that uses the libuv event loop.
Basically it makes asyncio go faster so should make async code more responsive. As the Cylc codebase becomes increasingly async this switch will help Cylc efficiency.
Two line change (+ one new dependency).
See also cylc/cylc-flow#4852
The results of profiling this problematic workflow revealed that the
asyncio.ensure_future
method was consuming a reasonable amount of CPU. It's likely that uvloop will have lower overheads for these operations.The text was updated successfully, but these errors were encountered: