Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Support custom IOLOOPs#2435

Open
gnir-work wants to merge26 commits intoencode:master
base:master
Choose a base branch
Loading
fromgnir-work:feature/support-custom-ioloop

Conversation

gnir-work
Copy link

@gnir-workgnir-work commentedAug 18, 2024
edited
Loading

Summary

This is merge of two PR's

  1. Allow passing a custom loop setup function instead of None #2391
    Support passing a custom IOLoop setup function in order to support runninguvicorn in custom ioloop implementation other that the default anduvloop.
    For example this feature will allow usingthis monitored IOLoop insideuvicorn applications :)
    Link to discussions thread -Add support for custom ioloop implementations #2256

  2. use asyncio.run(..., loop_factory) to avoid asyncio.set_event_loop_policy #2130
    set_event_loop_policy will be deprecated in python 3.13 anduvloop.EventLoopPolicy is deprecated already, this backports and uses the preferredloop_factory keyword to configureasyncio.run

Checklist

  • I understand that this PR may be closed in case there was no previous discussion. (This doesn't apply to typos!)
  • I've added a test for each change that was introduced, and I tried as much as possible to make a single atomic change.
  • I've updated the documentation accordingly.

@gnir-workgnir-workforce-pushed thefeature/support-custom-ioloop branch 3 times, most recently from32e28d0 to46078a9CompareAugust 18, 2024 21:43
@gnir-workgnir-workforce-pushed thefeature/support-custom-ioloop branch 3 times, most recently from38ee9b2 to6c5b1a1CompareAugust 18, 2024 21:59
@gnir-workgnir-workforce-pushed thefeature/support-custom-ioloop branch from6c5b1a1 tofcb1cbeCompareAugust 18, 2024 22:08
@gnir-workgnir-work marked this pull request as ready for reviewAugust 18, 2024 22:13
@gnir-work
Copy link
Author

Any updates regarding this?@Kludex

@gnir-work
Copy link
Author

Hey guys,
Would really love to push this one forward.
We are currently having a real hard time integrating IOLoop monitoring because of the hacks needed when running a custom IOLoop implementation

Thanks :)

@gnir-work
Copy link
Author

@Kludex Are you a maintainer?
I would really love to merge this functionality (given the green light on merging this I will fix the unit tests that seem to have broken over time)

Comment on lines +9 to +10
if sys.platform == "win32" and not use_subprocess:
return asyncio.ProactorEventLoop
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Reference for me later:python/cpython#122240

sys.exit(1)
if loop_factory is None:
return None
return loop_factory(use_subprocess=self.use_subprocess)
Copy link
Member

@graingertgraingertDec 30, 2024
edited
Loading

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

an importable loop factory should not take self.use_subprocess this is only needed to choose a selector event loop on windows

@graingert
Copy link
Member

this is a bit more important to get done as 3.14 deprecated the policy system, and we need a way to enable eager tasks

@graingertgraingert mentioned this pull requestDec 30, 2024
3 tasks
@Kludex
Copy link
Member

Question to my future self, or others:

Just to confirm, this is not a breaking change, given that--loop is currently not accepting a different loop other thanasyncio anduvloop, right? Or is it?

@graingert
Copy link
Member

Question to my future self, or others:

Just to confirm, this is not a breaking change, given that--loop is currently not accepting a different loop other thanasyncio anduvloop, right? Or is it?

it should be not a breaking change.... mostly

there's some differences - we're not using the broken and deprecated policy system anymore so that means anyone using asyncio on windows from a thread will get the default asyncio.EventLoop in their asyncio.run calls, rather than the SelectorEventLoop.

There's another change in that setting the event loop factory to "not None" results in asyncio.set_event_loop() not being called, but this is a no-op on windows anyway. (We do still call set_event_loop on posix, where on old python versions on linux this has observable differences with how child watchers work)

@graingert
Copy link
Member

@Kludex ok I've stopped fiddling with this PR now - it's good to be reviewed

Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Reviewers

@graingertgraingertgraingert approved these changes

@KludexKludexAwaiting requested review from Kludex

Assignees
No one assigned
Labels
None yet
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

3 participants
@gnir-work@graingert@Kludex

[8]ページ先頭

©2009-2025 Movatter.jp