ExecutorService.submit(Task) vs CompletableFuture.supplyAsync(Task, Executor)

27,470

Solution 1

Besides the return type Future vs. CompletableFuture are there any remarkable differences. Or When to use what?

It's rather simple really. You use the Future when you want the executing thread to wait for async computation response. An example of this is with a parallel merge/sort. Sort left asynchronously, sort right synchronously, wait on left to complete (future.get()), merge results.

You use a CompleteableFuture when you want some action executed, with the result after completion, asynchronously from the executed thread. For instance: I want to do some computation asynchronously and when I compute, write the results to some system. The requesting thread may not need to wait on a result then.

You can mimic the above example in a single Future executable, but the CompletableFuture offers a more fluent interface with better error handling.

It really depends on what you want to do.

And what are the differences if i use the CompletableFutureApi with default Executor (the method without executor)?

It will delegate to ForkJoin.commonPool() which is a default size to the number of CPUs on your system. If you are doing something IO intensive (reading and writing to the file system) you should define the thread pool differently.

If it's CPU intensive, using the commonPool makes most sense.

Solution 2

CompletableFuture has rich features like chaining multiple futures, combining the futures, executing some action after future is executed (both synchronously as well as asynchronously), etc.

However, CompletableFuture is no different than Future in terms of performance. Even when combine multiple instances of CompletableFuture (using .thenCombine and .join in the end), none of them get executed unless we call .get method and during this time, the invoking thread is blocked. I feel in terms of performance, this is not better than Future.

Please let me know if I am missing some aspect of performance here.

Share:
27,470
dermoritz
Author by

dermoritz

Updated on July 09, 2022

Comments

  • dermoritz
    dermoritz almost 2 years

    To run some stuff in parallel or asynchronously I can use either an ExecutorService: <T> Future<T> submit(Runnable task, T result); or the CompletableFuture Api:static <U> CompletableFuture<U> supplyAsync(Supplier<U> supplier, Executor executor); (Lets assume I use in both cases the same Executor)

    Besides the return type Future vs. CompletableFuture are there any remarkable differences. Or When to use what?

    And what are the differences if I use the CompletableFuture API with default Executor (the method without executor)?

  • dermoritz
    dermoritz over 7 years
    thanks. so if i don't need the answer (in case of runnable) or i don't need the features of CompletableFuture, there is no difference? Could you probably giv short example what the main advantage is?
  • BeeOnRope
    BeeOnRope over 7 years
    This answer doesn't make it clear why you'd want Future, ever. The advantage of CompletableFuture (async triggering of follow-on actions) is unique to it, but there is no advantage for Future - the "wait for result" is equally applicable to CompletableFuture.
  • elirandav
    elirandav about 6 years
    Also ForkJoin.commonPool() is shared across the whole JVM, calculating streams, and other tasks with no specific thread pool mentioned.
  • Steve
    Steve almost 5 years
    I think @dermoritz is asking difference btw ExecutorService vs. CompletableFuture instead Future vs. CompletableFuture.
  • Steve
    Steve almost 5 years
    One main difference is what @Chinmay mentioned below: none of them get executed unless we call .get method and during this time, while executorService.submit()/execute() executes the logic once you do it.
  • aderchox
    aderchox about 3 years
    An example code would have made this answer much clearer IMO.