-
Notifications
You must be signed in to change notification settings - Fork 8
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
Too many fds open. Cannot use select on a fd >= 64 #198
Comments
resolved? i meet the same problem when i open 9 OR 10 wget in the same time..... my computer, window10/ 8G/i7 |
I have this problem using --spider. Does it exist a solution to avoid too open too many fds at the same time ? |
Same issue here. |
Con someone please provide a way to reproduce this issue? |
More specifically, the exact command you're using and the environment. All our development and testing is done on GNU/Linux, and I haven't come across this issue before |
This is probably issue on windows only. FD_SETSIZE is set to rather low - to only 64 sockets - as it is described by error message. On Linux it is "probably/definitely" set (by default, or intentionally) to higher value (1024?). Solution is easy and described in last comment here: (actually there IS a way to increase FD_SETSIZE on windows. its defined in winsock.h and per microsoft themselves you can increase it by simply defining it BEFORE you include winsock.h |
Too many fds open. Cannot use select on a fd >= 64
why? How Change?
The text was updated successfully, but these errors were encountered: