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

    Type Alias DescribeLogDirsPartition

    Per-partition log dir information.

    type DescribeLogDirsPartition = {
        isFutureKey: boolean;
        offsetLag: bigint;
        partitionIndex: number;
        partitionSize: bigint;
        taggedFields: readonly TaggedField[];
        totalBytes: bigint;
        usableBytes: bigint;
    }
    Index

    Properties

    isFutureKey: boolean

    Whether this replica is the future replica (v1+).

    offsetLag: bigint

    The lag of the log's LEO vs the partition's HW.

    partitionIndex: number

    The partition index.

    partitionSize: bigint

    The size of the partition in bytes.

    taggedFields: readonly TaggedField[]

    Tagged fields (v2+).

    totalBytes: bigint

    Total bytes of the partition (v4+). -1 if unknown.

    usableBytes: bigint

    Usable bytes of the partition (v4+). -1 if unknown.