Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am implementing a thread pooling mechanism in which I'd like to execute tasks of varying priorities. I'd like to have a nice mechanism whereby I can submit a high priority task to the service and have it be scheduled before other tasks. The priority of the task is an intrinsic property of the task itself (whether I express that task as a Callable or a Runnable is not important to me).

Now, superficially it looks like I could use a PriorityBlockingQueue as the task queue in my ThreadPoolExecutor, but that queue contains Runnable objects, which may or may not be the Runnable tasks I've submitted to it. Moreover, if I've submitted Callable tasks, it's not clear how this would ever map.

Is there a way to do this? I'd really rather not roll my own for this, since I'm far more likely to get it wrong that way.

(An aside; yes, I'm aware of the possibility of starvation for lower-priority jobs in something like this. Extra points (?!) for solutions that have a reasonable guarantee of fairness)

share|improve this question
2  
Interesting question. This seems like a bit of an oversight in the API, in my opinion. – Adam Jaskiewicz Apr 30 '09 at 15:41
If I had to guess why it's not part of the API, I'd say that it's probably because the starvation issue is a tricky one. They'd need to provide a new set of primitives for fairness and escalation; things like must-execute-by and may-be-indefinitely-deferred (note that I'm pulling these names out of my ass). I might wish they'd done it, but I don't blame them :) – Chris R Apr 30 '09 at 16:57
Yeah, that makes sense. Seems like it would be a nice thing to have, though, but when you think you need to essentially write a CPU scheduling algorithm in Java you're probably doing something wrong. – Adam Jaskiewicz Apr 30 '09 at 17:25
2  
JDK 6 corrects this omission by providing new newTaskFor methods in AbstractExecutorService that let you control how the submitted tasks are wrapped, and thus let you return instances that are Comparable and can be easily ordered by a custom PriorityQueue. – gsteff Jan 20 '12 at 2:57

4 Answers

up vote 2 down vote accepted

At first blush it would seem you could define an interface for your tasks that extends Runnable or Callable<T> and Comparable. Then wrap a ThreadPoolExecutor with a PriorityBlockingQueue as the queue, and only accept tasks that implement your interface.

Taking your comment into account, it looks like one option is to extend ThreadPoolExecutor, and override the submit() methods. Refer to AbstractExecutorService to see what the default ones look like; all they do is wrap the Runnable or Callable in a FutureTask and execute() it. I'd probably do this by writing a wrapper class that implements ExecutorService and delegates to an anonymous inner ThreadPoolExecutor. Wrap them in something that has your priority, so that your Comparator can get at it.

share|improve this answer
2  
That was my take, too, but here's the problem; the Runnable instances that are passed in to the priority queue are not the tasks that I submit directly, they're wrapped in a java.util.concurrent.FutureTask<V> which of course is not sorted the same way. If I use execute -- which does not, for example, accept Callable -- then it throws my own objects in. – Chris R Apr 30 '09 at 15:17
Hmm, that complicates things. I figured there was something I was missing. – Adam Jaskiewicz Apr 30 '09 at 15:19
I'll say. I'm still beating away at it, but... Well, suffice to say it's a pain :) – Chris R Apr 30 '09 at 15:25
Adam, it appears that you are sitting right behind me, because that's what I just did. Now, it's worth noting that this does NOT solve starvation problems. I'm not really sure how to go about that, but it's something I'll have to consider. – Chris R Apr 30 '09 at 15:44
1  
The logic being that if you increase the priority of ALL tasks, then heapify the queue, you aren't changing priority of existing tasks in relation to each other, but any tasks already in the queue get higher priority than new tasks being added to the queue. I can't see this being trivial to implement in a lock-free way, though... – Adam Jaskiewicz Apr 30 '09 at 17:28
show 2 more comments

I have solved this problem in a reasonable fashion, and I'll describe it below for future reference to myself and anyone else who runs into this problem with the Java Concurrent libraries.

Using a PriorityQueue as the means for holding onto tasks for later execution is indeed a movement in the correct direction. The problem is that the PriorityQueue must be generically instantiated to contain Runnable instances, and it is impossible to call compareTo (or similiar) on a Runnable interface.

Onto solving the problem. When creating the Executor, it must be given a PriorityQueue. The queue should further be given a custom Comparator to do proper in place sorting:

new PriorityBlockingQueue<Runnable>(size, new CustomTaskComparator());

Now, a peek at CustomTaskComparator:

public class CustomTaskComparator implements Comparator<MyType> {

    @Override
    public int compare(MyType first, MyType second) {
         return comparison;
    }

}

Everything looking pretty straight forward up to this point. It gets a bit sticky here. Our next problem is to deal with the creation of FutureTasks from the Executor. In the Executor, we must override newTaskFor as so:

@Override
protected <V> RunnableFuture<V> newTaskFor(Callable<V> c) {
    //Override the default FutureTask creation and retrofit it with
    //a custom task. This is done so that prioritization can be accomplished.
    return new CustomFutureTask(c);
}

Where c is the Callable task that we're trying to execute. Now, let's have a peek at CustomFutureTask:

public class CustomFutureTask extends FutureTask {

    private CustomTask task;

    public CustomFutureTask(Callable callable) {
        super(callable);
        this.task = (CustomTask) callable;
    }

    public CustomTask getTask() {
        return task;
    }

}

Notice the getTask method. We're gonna use that later to grab the original task out of this CustomFutureTask that we've created.

And finally, let's modify the original task that we were trying to execute:

public class CustomTask implements Callable<MyType>, Comparable<CustomTask> {

    private final MyType myType;

    public CustomTask(MyType myType) {
        this.myType = myType;
    }

    @Override
    public MyType call() {
        //Do some things, return something for FutureTask implementation of `call`.
        return myType;
    }

    @Override
    public int compareTo(MyType task2) {
        return new CustomTaskComparator().compare(this.myType, task2.myType);
    }

}

You can see that we implement Comparable in the task to delegate to the actual Comparator for MyType.

And there you have it, customized prioritization for an Executor using the Java libraries! It takes some bit of bending, but it's the cleanest that I've been able to come up with. I hope this is helpful to someone!

share|improve this answer
There are some inherent limitations to this mechanism. For instance, the first runnable/callable passed to the executor doesn't go in the queue. Thus the priority mechanism will only apply when tasks are queued, and this happens when the number of current runners is exceeds the number of max thread in the pool size (here 1). – Snicolas 22 hours ago

You can use these helper classes:

public class PriorityFuture<T> implements RunnableFuture<T> {

    private RunnableFuture<T> src;
    private int priority;

    public PriorityFuture(RunnableFuture<T> other, int priority) {
        this.src = other;
        this.priority = priority;
    }

    public int getPriority() {
        return priority;
    }

    public boolean cancel(boolean mayInterruptIfRunning) {
        return src.cancel(mayInterruptIfRunning);
    }

    public boolean isCancelled() {
        return src.isCancelled();
    }

    public boolean isDone() {
        return src.isDone();
    }

    public T get() throws InterruptedException, ExecutionException {
        return src.get();
    }

    public T get(long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException {
        return src.get(timeout, unit);
    }

    public void run() {
        src.run();
    }

    public static Comparator<Runnable> COMP = new Comparator<Runnable>() {
        public int compare(Runnable o1, Runnable o2) {
            if (o1 == null && o2 == null)
                return 0;
            else if (o1 == null)
                return -1;
            else if (o2 == null)
                return 1;
            else {
                int p1 = ((PriorityFuture<?>) o1).getPriority();
                int p2 = ((PriorityFuture<?>) o2).getPriority();

                return p1 > p2 ? 1 : (p1 == p2 ? 0 : -1);
            }
        }
    };
}

AND

public interface PriorityCallable<T> extends Callable<T> {

    int getPriority();

}

AND this helper method:

public static ThreadPoolExecutor getPriorityExecutor(int nThreads) {
    return new ThreadPoolExecutor(nThreads, nThreads, 0L, TimeUnit.MILLISECONDS,
            new PriorityBlockingQueue<Runnable>(10, PriorityFuture.COMP)) {

        protected <T> RunnableFuture<T> newTaskFor(Callable<T> callable) {
            RunnableFuture<T> newTaskFor = super.newTaskFor(callable);
            return new PriorityFuture<T>(newTaskFor, ((PriorityCallable<T>) callable).getPriority());
        }
    };
}

AND then use it like this:

class LenthyJob implements PriorityCallable<Long> {
    private int priority;

    public LenthyJob(int priority) {
        this.priority = priority;
    }

    public Long call() throws Exception {
        System.out.println("Executing: " + priority);
        long num = 1000000;
        for (int i = 0; i < 1000000; i++) {
            num *= Math.random() * 1000;
            num /= Math.random() * 1000;
            if (num == 0)
                num = 1000000;
        }
        return num;
    }

    public int getPriority() {
        return priority;
    }
}

public class TestPQ {

    public static void main(String[] args) throws InterruptedException, ExecutionException {
        ThreadPoolExecutor exec = getPriorityExecutor(2);

        for (int i = 0; i < 20; i++) {
            int priority = (int) (Math.random() * 100);
            System.out.println("Scheduling: " + priority);
            LenthyJob job = new LenthyJob(priority);
            exec.submit(job);
        }
    }
}
share|improve this answer
@Snicolas the change you have made does not compile. – assylias 23 hours ago
@assyslias, which JDK version do you use ? – Snicolas 22 hours ago
Just a word to say this answer is good as well. – Snicolas 22 hours ago

Would it be possible to have one ThreadPoolExecutor for each level of priority? A ThreadPoolExecutor can be instanciated with a ThreadFactory and you could have your own implementation of a ThreadFactory to set the different priority levels.

 class MaxPriorityThreadFactory implements ThreadFactory {
     public Thread newThread(Runnable r) {
         Thread thread = new Thread(r);
         thread.setPriority(Thread.MAX_PRIORITY);
     }
 }
share|improve this answer
1  
Thread priority isn't really important to me here; the tasks themselves will tend to execute reasonably quickly (the goal is to get them to ~50ms each) so thread scheduling is less of an issue. It's the priority of the tasks relative to each other that is at issue here. – Chris R Apr 30 '09 at 14:59
Do they have to be executed in a certain order? – willcodejavaforfood Apr 30 '09 at 15:00
There's no one, true order, no, but tasks that arrive later but are of a higher priority should execute earlier than tasks that arrive later, but are of a lower priority. Again, with some guarantee of fairness to prevent starvation. – Chris R Apr 30 '09 at 15:03
Well submitting them through a PriorityQueue ought to make they sure they get executed in the right order so I dont quite follow why you cannot do that. – willcodejavaforfood Apr 30 '09 at 15:11
The thread pool executor service does not support prioritization of tasks, that's why. You don't get direct control of what type of object is placed on the queue. – Chris R Apr 30 '09 at 15:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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