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

    Type Alias ProducePartitionData

    Partition data in a Produce request.

    type ProducePartitionData = {
        partitionIndex: number;
        records: Uint8Array | null;
        taggedFields?: readonly TaggedField[];
    }
    Index

    Properties

    partitionIndex: number

    The partition index.

    records: Uint8Array | null

    Pre-encoded record batch data for this partition. Must contain one or more RecordBatch encoded with encodeRecordBatch.

    taggedFields?: readonly TaggedField[]

    Tagged fields (v9+).