-
Notifications
You must be signed in to change notification settings - Fork 226
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Windows builds of Python should up FD_SETSIZE #1241
Labels
Comments
I would like to see this happen. |
pitrou
changed the title
Windows builds should up FD_SETSIZE
Windows builds of Python should up FD_SETSIZE
Nov 21, 2016
Also submitted as a PR to conda-forge: conda-forge/python-feedstock#87 |
I've created patches which set |
Thank you! |
Thank you @ilanschnell ! |
mingwandroid
added a commit
to mingwandroid/cpython
that referenced
this issue
Feb 17, 2019
mingwandroid
added a commit
to mingwandroid/cpython
that referenced
this issue
Feb 18, 2019
mingwandroid
added a commit
to mingwandroid/cpython
that referenced
this issue
Feb 20, 2019
mingwandroid
added a commit
to mingwandroid/cpython
that referenced
this issue
Feb 20, 2019
mingwandroid
added a commit
to mingwandroid/cpython
that referenced
this issue
Feb 23, 2019
mingwandroid
added a commit
to mingwandroid/cpython
that referenced
this issue
Feb 23, 2019
mingwandroid
added a commit
to mingwandroid/cpython
that referenced
this issue
Apr 24, 2019
mingwandroid
added a commit
to mingwandroid/cpython
that referenced
this issue
Aug 2, 2019
mingwandroid
added a commit
to mingwandroid/cpython
that referenced
this issue
Aug 6, 2019
mingwandroid
added a commit
to mingwandroid/cpython
that referenced
this issue
Aug 6, 2019
mingwandroid
added a commit
to mingwandroid/cpython
that referenced
this issue
Aug 9, 2019
jjhelmus
pushed a commit
to jjhelmus/cpython
that referenced
this issue
Aug 7, 2020
mingwandroid
added a commit
to mingwandroid/cpython
that referenced
this issue
Sep 3, 2020
isuruf
pushed a commit
to isuruf/cpython
that referenced
this issue
Aug 17, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Default Windows builds of Python allow 512 maximum sockets in select(). This limit can be hit when an application has many connections. This is sometimes hit by users of distributed on Windows clusters.
Bumping it to a higher value (e.g. 2048) is straightforward and does not adverse consequences. It would be nice to our users if Anaconda builds of Python had such a higher limit.
See upstream issue: https://bugs.python.org/issue28708
The text was updated successfully, but these errors were encountered: