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

    Type Alias ClusterRebalanceRequest

    The settings to run a given rebalance with. Every setting is optional; an absent request body is equivalent to a body with every field absent, and means "use the configured settings".

    type ClusterRebalanceRequest = {
        leaderWaitTimeout?: string;
        maxTransferAttempts?: number;
        replicationLagThreshold?: number;
        replicationTimeout?: string;
    }
    Index
    leaderWaitTimeout?: string

    How long the coordinator waits for a partition without a leader to acquire one before reporting NO_LEADER and moving on (as a positive ISO-8601 duration).

    maxTransferAttempts?: number

    How many times a current leader may prompt the desired leader to take over leadership before giving up.

    replicationLagThreshold?: number

    The highest replication lag (in bytes) that a desired leader may have for its transfer to be accepted.

    replicationTimeout?: string

    How long a partition may stay frozen waiting for its desired leader to catch up (as a positive ISO-8601 duration).