Any ideas how to determine the number of active threads running in ExecutorService?
|
|
Use a ThreadPoolExecutor implementation and call getActiveCount() on it:
The ExecutorService interface does not provide a method for that, it depends on the implementation. |
||
|
|
|
|
The ExecutorService interface does not define a method to examine the number of worker threads in the pool, as this is an implementation detail
Is available on the ThreadPoolExecutor class
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
public class PoolSize {
public static void main(String[] args) {
ThreadPoolExecutor executor = new ThreadPoolExecutor(10, 20, 60L, TimeUnit.SECONDS, new LinkedBlockingQueue());
System.out.println(executor.getPoolSize());
}
}
But this requires you to explicitly create the ThreadPoolExecutor, rather than using the Executors factory which returns ExecutorService objects. You could always create your own factory that returned ThreadPoolExecutors, but you would still be left with the bad form of using the concrete type, not its interface. One possibility would be to provide your own ThreadFactory which creates threads in a known thread group, which you can then count
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.ThreadFactory;
public class PoolSize2 {
public static void main(String[] args) {
final ThreadGroup threadGroup = new ThreadGroup("workers");
ExecutorService executor = Executors.newCachedThreadPool(new ThreadFactory() {
public Thread newThread(Runnable r) {
return new Thread(threadGroup, r);
}
});
System.out.println(threadGroup.activeCount());
}
}
|
||
|
|
|
|
Check the sourcecode for Executors.newFixedThreadPool():
ThreadPoolExecutor has a getActiveCount() method. So you might either cast the ExecutorService to ThreadPoolExecutor, oder use the above code directly to obtain one. You can then invoke getActiveCount(). |
||
|
|
|
|
Place a static volatile counter on the thread which is updated whenever the thread is activated and deactivated. Also, see the API. |
||
|
|
