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.

  1. I also want to know about all the list of tasks that failed so that I can re-submit them
  2. When the tasks throw exceptions do the threads get evicted from the pool (although my analysis found they doesn't [but not sure] )?
  3. Calling get() method on the FutureTask would more likely put my flow sequential as it waits until the task completes.
  4. 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?

link|improve this question
feedback

2 Answers

This i show we solved that in Akka:

/**
 * INTERNAL AKKA USAGE ONLY
 */
final class MailboxExecutionTask(mailbox: Mailbox) extends ForkJoinTask[Unit] {
  final override def setRawResult(u: Unit): Unit = ()
  final override def getRawResult(): Unit = ()
  final override def exec(): Boolean = try { mailbox.run; true } catch {
    case anything ⇒
      val t = Thread.currentThread
      t.getUncaughtExceptionHandler match {
        case null ⇒
        case some ⇒ some.uncaughtException(t, anything)
      }
      throw anything
  }
 }
link|improve this answer
I am stranger to AKKA, but if I understand correctly are you setting the exception thrown by your code to current threads exception handler? If so, will the thread be removed from the pool as the Threadpool executor may check this exception and mark the thread as bad thread. Can you explain..? – Roller Apr 18 at 20:38
feedback

The F/J Framework is not meant for what you are doing. The F/J Framework is meant to handle divide-and-conquer, process now, and, go away. If you don't fit into what Brian Goetz wrote in Java theory and practice: Stick a fork in it, Part 1 http://www.ibm.com/developerworks/java/library/j-jtp11137.html then you are going to have trouble.

There are other Fork-Join products out there that are not so restrictive. See here: A Java Fork-Join Conqueror http://coopsoft.com/ar/ConquerArticle.html

Ed

link|improve this answer
You are correct I am not using Join part of the F/J framework. What I am looking for is if a FJTask fails there should be some way to attach a handler similar to UncaughtExceptionHandler to act on the failed task.Scenario: Update DB when DB is not available or third party API I am relying on has thrown an Unchecked Exception. I would like to know why it failed and how to recover from it. No where I get list of "all" RecursiveActions to check their status. Something like: list of spawned tasks, task.isDone(), task.getException(). – Roller Feb 6 at 16:36
edharned: you've apparently not kept up to date with the FJP, we don't do any joins: letitcrash.com/post/20397701710/… – Viktor Klang Apr 13 at 17:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.