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

JavaConcurrencyFutureCompletable Future

Java Problem Overview


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)?

Java Solutions


Solution 1 - Java

> 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 - Java

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.

Solution 3 - Java

This clarified for me the difference between future an completable future a bit more: https://stackoverflow.com/questions/14541975/difference-between-future-and-promise

CompletableFuture is more like a promise.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestiondermoritzView Question on Stackoverflow
Solution 1 - JavaJohn VintView Answer on Stackoverflow
Solution 2 - JavaChinmay PhadkeView Answer on Stackoverflow
Solution 3 - JavadermoritzView Answer on Stackoverflow