camel-kafka-source-kafka-connector source configuration
Connector Description: Receive data from Kafka topics.
When using camel-kafka-source-kafka-connector as source make sure to use the following Maven dependency to have support for the connector:
<dependency>
<groupId>org.apache.camel.kafkaconnector</groupId>
<artifactId>camel-kafka-source-kafka-connector</artifactId>
<version>x.x.x</version>
<!-- use the same version as your Camel Kafka connector version -->
</dependency>
To use this source connector in Kafka connect you’ll need to set the following connector.class
connector.class=org.apache.camel.kafkaconnector.kafkasource.CamelKafkasourceSourceConnector
The camel-kafka-source source connector supports 11 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 |
||
If true, periodically commit to ZooKeeper the offset of messages already fetched by the consumer. |
true |
MEDIUM |
|
Whether to allow doing manual commits. |
false |
MEDIUM |
|
What to do if kafka threw an exception while polling for new messages. There are 5 enums and the value can be one of DISCARD, ERROR_HANDLER, RECONNECT, RETRY, STOP. |
"ERROR_HANDLER" |
MEDIUM |
|
What to do when there is no initial offset. There are 3 enums and the value can be one of latest, earliest, none. |
"latest" |
MEDIUM |
|
A string that uniquely identifies the group of consumers to which this source belongs Example: my-group-id. |
MEDIUM |
The camel-kafka-source source connector has no converters out of the box.
The camel-kafka-source source connector has no transforms out of the box.
The camel-kafka-source source connector has no aggregation strategies out of the box.