-
Notifications
You must be signed in to change notification settings - Fork 19
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
Fix busy loop when FDs are exhausted #91
Conversation
I found another issue when FDs are exhausted.
|
@nojima |
I added the test for FD flood. |
@nojima BTW, what about this?
|
I am not sure what to do. In any case, I think it is outside the scope of this PR. |
OK. Please create an issue for the problem so that we can revisit it later. |
I added issue #92. |
Thanks. |
We found that once yrmcds exhausts FDs,
tcp_server_socket::on_readable()
causes a busy loop with loggingaccept: Too many open files
. This PR is to avoid that busy loop.