This plugin creates a new thread to handle a new connection. This is not the best use of the resources, especially when there is a high number of connections, the CPU usage increases significantly.
beats-input uses Netty server to handle connection. Changing thread-based connections to NIO would be the right way to go.
This plugin creates a new thread to handle a new connection. This is not the best use of the resources, especially when there is a high number of connections, the CPU usage increases significantly.
beats-input uses Netty server to handle connection. Changing thread-based connections to NIO would be the right way to go.