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

    Type Alias CreateTopicRequest

    A single topic to create.

    type CreateTopicRequest = {
        assignments?: readonly CreateTopicsReplicaAssignment[];
        configs?: readonly CreateTopicsConfigEntry[];
        name: string;
        numPartitions: number;
        replicationFactor: number;
        taggedFields?: readonly TaggedField[];
    }
    Index

    Properties

    assignments?: readonly CreateTopicsReplicaAssignment[]

    Manual replica assignments (overrides numPartitions/replicationFactor).

    configs?: readonly CreateTopicsConfigEntry[]

    Topic configuration overrides.

    name: string

    The topic name.

    numPartitions: number

    Number of partitions (-1 to use broker default).

    replicationFactor: number

    Replication factor (-1 to use broker default).

    taggedFields?: readonly TaggedField[]

    Tagged fields (v5+).