How to determine Callable execution time in ThreadPoolExecutor?

2.5k Views Asked by At

I have tasks that have a timeout limit, I want to determine how much execution time did those tasks get before they were forced to terminate?

e.g. if a task spent all its time waiting on queue because there was no avaialble thread it would have execution time of zero.

Is the best approach to sub class ThreadPoolExecutor and override beforeExecute and afterExecute, if so, how?

2

There are 2 best solutions below

1
On

Better you can code inside call method itself.

for Ex.

call() {
long time = System.currentTimeInmillis();

..
..
//Logic
..
..

long time1 = System.currentTimeInmillis();

//Now you can find the time difference.
}

This code wont take waiting time and also it will find only computation time.

0
On

Here is an implementation of a tracking thread pool that tracks cumulative execution statistics of the tasks like total execution time, average execution time, total tasks completed and total in progress tasks.

I don't know if this is what you are looking for. But, this would definitely give you an idea on the implementation and you can modify the implementation to suit your needs.