CompletableFuture:等待完成百分比

问题描述

我正在向分布式系统的 n 个节点并行写入相同的数据。
当这些节点中的 n% 已成功写入时,对其他节点的剩余写入就不重要了,因为 n% 保证了其他节点之间的复制。

Java 的 CompletableFuture 似乎与我想要的非常接近,例如:

CompletableFuture.anyOf()

(在第一个 future 完成时返回) - 避免不必要的等待,但返回太快,因为我需要 n% 完成

CompletableFuture.allOf()

(当所有期货完成时返回) - 避免返回太快但不必要地等待 100% 完成

我正在寻找一种在特定百分比的期货完成后返回的方法。 例如,如果我提供 10 个期货,则在其中 6% 或 60% 成功完成时返回。

例如,Bluebird JS 具有此功能

Promise.some(promises,countThatNeedToComplete)

我想知道我是否可以用 Java 中的 TheadExecutor 或 vanilla CompletableFuture 做类似的事情

解决方法

我相信您可以仅使用 CompletableFuture 已经提供的内容来实现您想要的效果,但是您必须实施额外的控制以了解已完成的未来任务数量以及何时达到数量/百分比需要,取消剩余的任务。

下面是一个说明这个想法的类:

public class CompletableSome<T>
{
private List<CompletableFuture<Void>> tasks;
private int tasksCompleted = 0;

public CompletableSome(List<CompletableFuture<T>> tasks,int percentOfTasksThatMustComplete)
{
    int minTasksThatMustComplete = tasks.size() * percentOfTasksThatMustComplete / 100;
    System.out.println(
        String.format("Need to complete at least %s%% of the %s tasks provided,which means %s tasks.",percentOfTasksThatMustComplete,tasks.size(),minTasksThatMustComplete));

    this.tasks = new ArrayList<>(tasks.size());
    for (CompletableFuture<?> task : tasks)
    {
        this.tasks.add(task.thenAccept(a -> {
            // thenAccept will be called right after the future task is completed. At this point we'll
            // check if we reached the minimum number of nodes needed. If we did,then complete the 
            // remaining tasks since they are no longer needed.
            tasksCompleted++;
            if (tasksCompleted >= minTasksThatMustComplete)
            {
                tasks.forEach(t -> t.complete(null));
            }
        }));
    }
}

public void execute()
{
    CompletableFuture.allOf(tasks.toArray(new CompletableFuture<?>[0])).join();
}
}

您将在下面的示例中使用此类:

public static void main(String[] args)
{
    int numberOfNodes = 4;

    // Create one future task for each node.
    List<CompletableFuture<String>> nodes = new ArrayList<>();
    for (int i = 1; i <= numberOfNodes; i++)
    {
        String nodeId = "result" + i;
        nodes.add(CompletableFuture.supplyAsync(() -> {
            try
            {
                // Sleep for some time to avoid all tasks to complete before the count is checked.
                Thread.sleep(100 + new Random().nextInt(500));
            }
            catch (InterruptedException e)
            {
                e.printStackTrace();
            }

            // The action here is just to print the nodeId,you would make the actual call here.
            System.out.println(nodeId + " completed.");
            return nodeId;
        }));
    }

    // Here we're saying that just 75% of the nodes must be called successfully.
    CompletableSome<String> tasks = new CompletableSome<>(nodes,75);
    tasks.execute();
}

请注意,使用此解决方案,您最终可能会执行比所需最少数量更多的任务——例如,当两个或更多节点几乎同时响应时,您可能会在第一个节点响应时达到所需的最少数量,但是没有时间取消其他任务。如果这是一个问题,那么您就必须实施更多控制措施。

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...