mcvsubbu commented on issue #4427: Consider using epoll based event loop from Netty when Pinot runs on Linux systems URL: https://github.com/apache/incubator-pinot/issues/4427#issuecomment-512616150 When we have a small number of file descriptors, there is not much difference between epoll(), select() and kqueue(). It is only when we are dealing with 1000s or more fds the differences come into play. Typically for front-end servers fielding connections from all over the internet. In our case, even with common brokers, the number of connections to a broker should be small (100s at best). The number of connections to servers should be even smaller, with the change to re-use a single connection from broker to server.
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
