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

    Type Alias TransactionState

    The state of a single transaction.

    type TransactionState = {
        errorCode: number;
        producerEpoch: number;
        producerId: bigint;
        state: string;
        taggedFields: readonly TaggedField[];
        topics: readonly TransactionTopicPartition[];
        transactionalId: string;
        transactionStartTimeMs: bigint;
        transactionTimeoutMs: number;
    }
    Index

    Properties

    errorCode: number

    Error code (0 = no error).

    producerEpoch: number

    The producer epoch.

    producerId: bigint

    The producer ID.

    state: string

    The transaction state (e.g. "Ongoing", "PrepareCommit", "PrepareAbort", "CompleteCommit", "CompleteAbort", "Empty", "Dead").

    taggedFields: readonly TaggedField[]

    Tagged fields.

    topics: readonly TransactionTopicPartition[]

    The topic partitions involved in the transaction.

    transactionalId: string

    The transactional ID.

    transactionStartTimeMs: bigint

    The transaction start timestamp.

    transactionTimeoutMs: number

    The transaction timeout in milliseconds.