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

    Type Alias PartitionBackupState

    Partition Backup State

    Detailed information about the backup state for a given partition.

    type PartitionBackupState = {
        checkpointId: CheckpointId;
        checkpointPosition: number;
        checkpointTimestamp: string;
        checkpointType: BackupType;
        firstLogPosition: number;
        partitionId: PartitionId | null;
    }
    Index
    checkpointId: CheckpointId

    The id of the checkpoint this backup is based on.

    checkpointPosition: number

    The log position of the checkpoint this backup is based on.

    checkpointTimestamp: string

    The timestamp at which the checkpoint was created.

    checkpointType: BackupType

    The type of the backup.

    firstLogPosition: number

    The first log position included in this backup.

    partitionId: PartitionId | null

    The id of the partition. Omitted when nested inside a backup range's start/end, where the partition is already identified by the enclosing range.