camel-kafka-sink-kafka-connector sink configuration
Connector Description: Send data to Kafka topics through Plain Login Module. The Kamelet is able to understand the following headers to be set: - `key` / `ce-key`: as message key - `partition-key` / `ce-partitionkey`: as message partition key Both the headers are optional.
When using camel-kafka-sink-kafka-connector as sink make sure to use the following Maven dependency to have support for the connector:
<dependency>
<groupId>org.apache.camel.kafkaconnector</groupId>
<artifactId>camel-kafka-sink-kafka-connector</artifactId>
<version>x.x.x</version>
<!-- use the same version as your Camel Kafka connector version -->
</dependency>
To use this sink connector in Kafka connect you’ll need to set the following connector.class
connector.class=org.apache.camel.kafkaconnector.kafkasink.CamelKafkasinkSinkConnector
The camel-kafka-sink sink connector supports 6 options, which are listed below.
Name | Description | Default | Priority |
---|---|---|---|
Required Comma separated list of Kafka topic names. | HIGH | ||
Required Comma separated list of Kafka Broker URLs. | HIGH | ||
Protocol used to communicate with brokers. SASL_PLAINTEXT, PLAINTEXT, SASL_SSL and SSL are supported. | "SASL_SSL" | MEDIUM | |
The Simple Authentication and Security Layer (SASL) Mechanism used. | "PLAIN" | MEDIUM | |
Required Username to authenticate to Kafka. | HIGH | ||
Required Password to authenticate to kafka. | HIGH |
The camel-kafka-sink sink connector has no converters out of the box.
The camel-kafka-sink sink connector has no transforms out of the box.
The camel-kafka-sink sink connector has no aggregation strategies out of the box.