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

    Type Alias InitProducerIdRequest

    InitProducerId request payload.

    type InitProducerIdRequest = {
        producerEpoch?: number;
        producerId?: bigint;
        taggedFields?: readonly TaggedField[];
        transactionalId: string | null;
        transactionTimeoutMs: number;
    }
    Index

    Properties

    producerEpoch?: number

    The current producer epoch (v3+). Use -1 for new producers.

    producerId?: bigint

    The current producer ID (v3+). Use -1 for new producers.

    taggedFields?: readonly TaggedField[]

    Tagged fields (v2+).

    transactionalId: string | null

    The transactional ID, or null for idempotent-only producers.

    transactionTimeoutMs: number

    The time in milliseconds to wait before aborting idle transactions. Only relevant for transactional producers; set to -1 for idempotent-only.