Tag: Thread

  • Thread Pool

    Thread per Request Thread Pool How to size a thread pool? #1. CPU-bound task #2. I/O-bound task Graceful Shutdown Graceful Shutdown Sequence Reference

  • What does Current Thread Busy means?

    What does Current Thread Busy means?

    TL; DR “Current Thread Busy” metric displays how many active threads are in the pool. This shows the value of ThreadPoolExecutor.getActiveCount(). Which reflects the number of the threads that are running their tasks (= the number of the requests that are being currently handled), not necessary has to be RUNNABLE…