0

在我的网络应用程序中,我使用的是 Play!基于 Akka 构建的用于管理线程的框架。在特定情况下,我编写了许多从外部服务收集数据的 CompletionStages,我想控制并行请求的数量,以免这些外部服务负担过重。在不更改整个应用程序的情况下执行此操作的一种方法是控制 Akka 使用的线程池大小。现在我在akka like中准备了两个线程池,并尝试在两个池之间切换。我正在使用以下内容编写我的 CompletionStages:

CompletableFuture.completedFuture(firstResult)
                        .thenComposeAsync( firstResult -> { dostuff(firstResult);}

根据 Akka 的文档,这是设置当前线程池的方法:

// this is scala.concurrent.ExecutionContext
// for use with Futures, Scheduler, etc.
final ExecutionContext ex = system.dispatchers().lookup("my-dispatcher");

通过观察我的应用程序,像这样设置上下文不会影响应用程序,并且只考虑默认调度程序。有没有办法动态设置 Akka 中当前池的大小?

4

1 回答 1

1

您需要将自定义传递Executor给该thenComposeAsync方法:

final java.util.concurrent.Executor exec = system.dispatchers().lookup("my-dispatcher");

CompletableFuture.completedFuture(firstResult)
                 .thenComposeAsync(firstResult -> {
                   dostuff(firstResult);
                 }, exec);
于 2018-03-16T12:40:36.837 回答