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

    Type Alias FetchPartitionRequest

    Per-partition fetch data in a Fetch request.

    type FetchPartitionRequest = {
        currentLeaderEpoch?: number;
        fetchOffset: bigint;
        lastFetchedEpoch?: number;
        logStartOffset?: bigint;
        partitionIndex: number;
        partitionMaxBytes: number;
        taggedFields?: readonly TaggedField[];
    }
    Index

    Properties

    currentLeaderEpoch?: number

    The current leader epoch of the partition (v9+). Use -1 if unknown.

    fetchOffset: bigint

    The offset to fetch from.

    lastFetchedEpoch?: number

    The last fetched epoch of the partition (v12+). Use -1 if unknown.

    logStartOffset?: bigint

    The earliest available offset of the follower replica (v5+). Used only when the request is from a follower. Consumers should set -1.

    partitionIndex: number

    The partition index.

    partitionMaxBytes: number

    Maximum bytes to fetch from this partition.

    taggedFields?: readonly TaggedField[]

    Tagged fields (v12+).