Hello there
Start by looking through thread dumps to find blocked threads, in the XNIO worker pool; in order to troubleshoot the spring boot pseudo death brought on by undertow and XNIO thread blockage.
To enable extra threads for handling requests, increase the workerThreads option in undertow. Examine XNIO threads for blocking operations, such as lengthy database searches; transfer these jobs to a different thread pool or use async for asynchronous processing.
To prevent thread depletion, check connection pool configuration and make sure thread management is correct.
Edit your Comment