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

    Type Alias RecordBatchAttributes

    RecordBatch attributes bit flags.

    type RecordBatchAttributes = {
        compression: CompressionCodec;
        hasDeleteHorizon: boolean;
        isControlBatch: boolean;
        isTransactional: boolean;
        timestampType: TimestampType;
    }
    Index

    Properties

    compression: CompressionCodec

    Compression codec (0=none, 1=gzip, 2=snappy, 3=lz4, 4=zstd).

    hasDeleteHorizon: boolean

    Whether delete horizon is set (KIP-817).

    isControlBatch: boolean

    Whether this is a control batch (e.g., transaction markers).

    isTransactional: boolean

    Whether this is a transactional batch.

    timestampType: TimestampType

    Timestamp type (0=CreateTime, 1=LogAppendTime).