Hello AK,
Yes, not only the "http-nio-8080-Acceptor", If any thread is looping infinitely definitely it can cause an increase in the server's load. The http-nio-8080-Acceptor thread is responsible for accepting new client connections on the HTTP port 8080, and if it is stuck in an infinite loop, it may not be able to accept new connections, causing those clients to wait or eventually timeout. This can result in an increase in the server's workload as it tries to handle the backlog of requests.
In addition, the infinite looping of a thread can cause the server to use more CPU resources, further increasing the load. It is essential to identify and resolve the root cause of the infinite loop to prevent further impact on the server's performance. This can involve troubleshooting the application code, checking network issues, or adjusting the server configuration.
Edit your Comment