I am using a ThreadPoolExecutor with a corePoolSize = maxPoolSize = queueSize = 15
Every incoming request spawns 7 tasks, to be executed with this thread pool.
Even though each of the individual tasks, on being scheduled, take less than 3 seconds, the overall request takes much longer.
I suspected that the system is falling short of threads and tasks being queued.
I logged the following information for every incoming request.
getActiveCount()
getLargestPoolSize()
getPoolSize()
getQueue().size()
I notice that the system is not falling short of threads.
getPoolSize and getLargestPoolSize values are constantly at 15 - This is as expected.
getQueue().size() is always 0 - so no tasks are getting queued.
getActiveCount() values are always between 1-2.
Why aren't the rest of the threads in the pool working ?
Is "getActiveCount()-Returns the approximate number of threads that are actively executing tasks." the right API to use ?