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

    Type Alias ProducePartitionResponse

    Partition response in a Produce response.

    type ProducePartitionResponse = {
        baseOffset: bigint;
        errorCode: number;
        errorMessage: string | null;
        logAppendTimeMs: bigint;
        logStartOffset: bigint;
        partitionIndex: number;
        recordErrors: readonly ProduceRecordError[];
        taggedFields: readonly TaggedField[];
    }
    Index

    Properties

    baseOffset: bigint

    The base offset assigned to the first message in the batch.

    errorCode: number

    The error code (0 = no error).

    errorMessage: string | null

    Human-readable error message for the partition (v8+).

    logAppendTimeMs: bigint

    The log append timestamp (v2+). -1 if the broker does not use log append time.

    logStartOffset: bigint

    The log start offset of the partition (v5+). Useful for log compaction tracking.

    partitionIndex: number

    The partition index.

    recordErrors: readonly ProduceRecordError[]

    Per-record errors (v8+). Only populated when specific records fail within a batch.

    taggedFields: readonly TaggedField[]

    Tagged fields (v9+).