@qualithm/kafka-client - v0.1.6
    Preparing search index...

    Type Alias TxnOffsetCommitPartitionRequest

    Per-partition offset to commit in a transaction.

    type TxnOffsetCommitPartitionRequest = {
        committedLeaderEpoch?: number;
        committedMetadata: string | null;
        committedOffset: bigint;
        partitionIndex: number;
    }
    Index

    Properties

    committedLeaderEpoch?: number

    Leader epoch for fencing (v2+). -1 if unknown.

    committedMetadata: string | null

    Metadata associated with the offset (nullable).

    committedOffset: bigint

    The committed offset.

    partitionIndex: number

    Partition index.