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

    Type Alias Partition

    Provides information on a partition within a broker node.

    type Partition = {
        health: "healthy" | "unhealthy" | "dead";
        partitionId: number;
        role: "leader" | "follower" | "inactive";
    }
    Index

    Properties

    health: "healthy" | "unhealthy" | "dead"

    Describes the current health of the partition.

    partitionId: number

    The unique ID of this partition.

    role: "leader" | "follower" | "inactive"

    Describes the Raft role of the broker for a given partition.