CompletableFuture重用池中的线程



我正在测试Completable Future。如本文所述我原以为线程可以从公共池中重用,但这个片段显示了的奇怪行为

for (int i = 0; i < 10000; i++) {
            final int counter = i;
            CompletableFuture.supplyAsync(() -> {
                System.out.println("Looking up " + counter + " on thread " + Thread.currentThread().getName());
                return null;
            });
}

我有这样的输出:

Looking up 0 on thread Thread-2
Looking up 1 on thread Thread-3
Looking up 2 on thread Thread-4
...
Looking up 10000 on thread Thread-10002

看起来每个任务都会创建一个新线程。为什么我所有的completableFuture都不重用公共池中的线程?

此外,我已经用RxJava进行了测试,它与以下代码一起工作:

for (int i = 0; i < 10000; i++) {
            rxJobExecute(i).subscribeOn(Schedulers.io()).subscribe();
        }
private Observable<String> rxJobExecute(int i) {
        return Observable.fromCallable(() -> {
            System.out.println("emission " + i + " on thread " + Thread.currentThread().getName());
            return "tata";
        });
    }

输出

emission 8212 on thread RxIoScheduler-120
emission 8214 on thread RxIoScheduler-120
emission 8216 on thread RxIoScheduler-120
emission 8218 on thread RxIoScheduler-120
emission 8220 on thread RxIoScheduler-120
emission 7983 on thread RxIoScheduler-275
emission 1954 on thread RxIoScheduler-261
emission 1833 on thread RxIoScheduler-449
emission 1890 on thread RxIoScheduler-227

由于您只有2个处理器,因此启动应用程序时的值Runtime.getRuntime().availableProcessors()只观察到1处理器(avialableProcessors将返回1和机器上处理器数量之间的任何数字,并且不是很确定(。

如果并行度为1,则ForkJoin公共池将使用每个任务的线程线程池。

要强制系统以特定的并行度加载(至少为此(,请将系统属性-Djava.util.concurrent.ForkJoinPool.common.parallelism=2定义为运行时参数

编辑:

我又看了一遍内部逻辑。由于您有2核心,因此并行性将始终使用每个任务的线程。逻辑预期大于或等于3,因此需要将并行度更新为3

-Djava.util.concurrent.ForkJoinPool.common.parallelism=3

另一种选择是定义自己的线程池

相关内容

  • 没有找到相关文章

最新更新