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

    Type Alias FetchPartitionResponse

    Per-partition response in a Fetch response.

    type FetchPartitionResponse = {
        abortedTransactions: readonly FetchAbortedTransaction[];
        errorCode: number;
        highWatermark: bigint;
        lastStableOffset: bigint;
        logStartOffset: bigint;
        partitionIndex: number;
        preferredReadReplica: number;
        records: Uint8Array | null;
        taggedFields: readonly TaggedField[];
    }
    Index

    Properties

    abortedTransactions: readonly FetchAbortedTransaction[]

    Aborted transactions in this partition (v4+).

    errorCode: number

    The error code (0 = no error).

    highWatermark: bigint

    The last stable offset of the partition.

    lastStableOffset: bigint

    The last stable offset (v4+). -1 if not available.

    logStartOffset: bigint

    The log start offset of the partition (v5+). -1 if not available.

    partitionIndex: number

    The partition index.

    preferredReadReplica: number

    The preferred read replica for the consumer (v11+). -1 if not set.

    records: Uint8Array | null

    The raw record batch data for this partition (nullable). Must be decoded with decodeRecordBatch.

    taggedFields: readonly TaggedField[]

    Tagged fields (v12+).