What is the better way to handle exceptions(uncaught) while using ForkJoinPool to submit tasks (RecursiveAction or RecursiveTask)?
ForkJoinPool accepts a Thread.UncaughtExceptionHandler to handle exceptions when the WorkerThread terminates abruptly(which is anyways not under our control) but this handler is not used when ForkJoinTask throws an exception. I am using the standard submit/invokeAll way in my implementation.
Here is my scenario:
I have a Thread running in a infinite loop reading data from a 3rd party system. With in this Thread I submit Tasks to the ForkJoinPool
new Thread() { public void run() { while (true) { ForkJoinTask<Void> uselessReturn = ForkJoinPool.submit(RecursiveActionTask); } } }
I am using a RecursiveAction and in few scenarios a RecursiveTask. These tasks are submitted to FJPool using submit() method.
I want to have a generic exception handler similar to UncaughtExceptionHandler where if a Task throws an unchecked/uncaught exception I can process the exception and re-submit the task if required. Handling the exception also ensures the queued tasks would not get cancelled if one/some of the Tasks throw an exception.
invokeAll() method returns a set of ForkJoinTasks but these Tasks are in a recursive block (each task invokes the compute() method and may be split further [hypothetical scenario] )
class RecursiveActionTask extends RecursiveAction {
public void compute() {
if <task.size() <= ACCEPTABLE_SIZE) {
processTask() // this might throw an checked/unchecked exception
} else {
RecursiveActionTask[] splitTasks = splitTasks(tasks)
RecursiveActionTasks returnedTasks = invokeAll(splitTasks);
// the below code never executes as invokeAll submits the tasks to the pool
// and the flow never comes to the code below.
// I am looking for some handling like this
for (RecusiveActionTask task : returnedTasks) {
if (task.isDone()) {
task.getException() // handle this exception
}
}
}
}
}
I noticed that when 3-4 tasks fail the whole queue submission unit is discarded. Currently I have put a try/catch around processTask that I personally don't like. I am looking for more generic.
- I also want to know about all the list of tasks that failed so that I can re-submit them
- When the tasks throw exceptions do the threads get evicted from the pool (although my analysis found they doesn't [but not sure] )?
- Calling
get()method on the FutureTask would more likely put my flow sequential as it waits until the task completes. - I want to know the status of the Task only if it fails. I don't care when it completes (obviously doesn't want to wait an hour later)
Any ideas how to handle the exceptions in the above scenario?