@camunda8/orchestration-cluster-api
    Preparing search index...

    Type Alias ClusterBalanceResponse

    The cluster's current per-partition balance state, the running rebalance, and the last completed rebalance.

    type ClusterBalanceResponse = {
        lastCompletedRebalance: ClusterCompletedRebalance | null;
        partitions: ClusterRebalancePartition[];
        runningRebalance: ClusterRunningRebalance | null;
        state: "BALANCED" | "BALANCING" | "UNBALANCED";
    }
    Index
    lastCompletedRebalance: ClusterCompletedRebalance | null

    The last completed non-dry-run rebalance this coordinator finished.

    The balance state of each partition as of the time of the request.

    runningRebalance: ClusterRunningRebalance | null

    Normally the rebalance currently running, or absent if no rebalance is running. For a dry-run response, this is instead the unexecuted plan of that dry run.

    state: "BALANCED" | "BALANCING" | "UNBALANCED"

    The cluster's aggregate balance state as of the time of the request.