Interface KafkaTriggerNodeParameters

Source
interface KafkaTriggerNodeParameters {
    groupId?: string;
    options?: {
        allowAutoTopicCreation?: boolean;
        autoCommitInterval?: number;
        autoCommitThreshold?: number;
        fromBeginning?: boolean;
        heartbeatInterval?: number;
        jsonParseMessage?: boolean;
        maxInFlightRequests?: number;
        onlyMessage?: boolean;
        parallelProcessing?: boolean;
        returnHeaders?: boolean;
        sessionTimeout?: number;
    };
    schemaRegistryUrl?: string;
    topic?: string;
    useSchemaRegistry?: boolean;
}

Properties§

Source§

readonly groupId?: string

ID of the consumer group

Source§

readonly options?: {
    allowAutoTopicCreation?: boolean;
    autoCommitInterval?: number;
    autoCommitThreshold?: number;
    fromBeginning?: boolean;
    heartbeatInterval?: number;
    jsonParseMessage?: boolean;
    maxInFlightRequests?: number;
    onlyMessage?: boolean;
    parallelProcessing?: boolean;
    returnHeaders?: boolean;
    sessionTimeout?: number;
}

Default: {}

Source§

readonly schemaRegistryUrl?: string

URL of the schema registry

Source§

readonly topic?: string

Name of the queue of topic to consume from

Source§

readonly useSchemaRegistry?: boolean

Whether to use Confluent Schema Registry