We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I config the io select thread 2
after application started,the io select thread should have 2
there is only 1 io select thread
No matter how many io select threads I configure,there‘s only have one io select thread actually
netty
java -version
uname -a
The text was updated successfully, but these errors were encountered:
@abners Yes you are right, may be we need to clarify in the documentation that no more than 1 selector thread is used when there is a custom configuration. Take a look here https://stackoverflow.com/questions/28665906/netty-boss-event-loop-and-executor, although the question is not about this, the answer explains very well the boss and worker EventLoopGroup. Also this one https://stackoverflow.com/questions/28331809/netty-bootstrap-with-boss-group-or-with-just-with-workers-eventloopgroup explains when you may need boss EventLoopGroup.
EventLoopGroup
Sorry, something went wrong.
ReactorNetty#IO_SELECT_COUNT
ok,understand, thank you for your reply
d0dc3f2
violetagg
Successfully merging a pull request may close this issue.
I config the io select thread 2
Expected Behavior
after application started,the io select thread should have 2
Actual Behavior
there is only 1 io select thread
No matter how many io select threads I configure,there‘s only have one io select thread actually
Steps to Reproduce
Possible Solution
Your Environment
netty
, ...):java -version
): 1.8uname -a
): macosThe text was updated successfully, but these errors were encountered: