blob: 5f9f5e23d76619706b698b08213321a2c2e6f165 [file] [log] [blame]
// kafka-connector options: START
[[camel-consul-kafka-connector-source]]
= camel-consul-kafka-connector source configuration
When using camel-consul-kafka-connector as source make sure to use the following Maven dependency to have support for the connector:
[source,xml]
----
<dependency>
<groupId>org.apache.camel.kafkaconnector</groupId>
<artifactId>camel-consul-kafka-connector</artifactId>
<version>x.x.x</version>
<!-- use the same version as your Camel Kafka connector version -->
</dependency>
----
The camel-consul source connector supports 35 options, which are listed below.
[width="100%",cols="2,5,^1,2",options="header"]
|===
| Name | Description | Default | Priority
| *camel.source.path.apiEndpoint* | The API endpoint | null | HIGH
| *camel.source.endpoint.connectTimeoutMillis* | Connect timeout for OkHttpClient | null | MEDIUM
| *camel.source.endpoint.consulClient* | Reference to a com.orbitz.consul.Consul in the registry. | null | MEDIUM
| *camel.source.endpoint.key* | The default key. Can be overridden by CamelConsulKey | null | MEDIUM
| *camel.source.endpoint.pingInstance* | Configure if the AgentClient should attempt a ping before returning the Consul instance | true | MEDIUM
| *camel.source.endpoint.readTimeoutMillis* | Read timeout for OkHttpClient | null | MEDIUM
| *camel.source.endpoint.tags* | Set tags. You can separate multiple tags by comma. | null | MEDIUM
| *camel.source.endpoint.url* | The Consul agent URL | null | MEDIUM
| *camel.source.endpoint.writeTimeoutMillis* | Write timeout for OkHttpClient | null | MEDIUM
| *camel.source.endpoint.bridgeErrorHandler* | Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions occurred while the consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions, that will be logged at WARN or ERROR level and ignored. | false | MEDIUM
| *camel.source.endpoint.exceptionHandler* | To let the consumer use a custom ExceptionHandler. Notice if the option bridgeErrorHandler is enabled then this option is not in use. By default the consumer will deal with exceptions, that will be logged at WARN or ERROR level and ignored. | null | MEDIUM
| *camel.source.endpoint.exchangePattern* | Sets the exchange pattern when the consumer creates an exchange. One of: [InOnly] [InOut] [InOptionalOut] | null | MEDIUM
| *camel.source.endpoint.basicPropertyBinding* | Whether the endpoint should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities | false | MEDIUM
| *camel.source.endpoint.consistencyMode* | The consistencyMode used for queries, default ConsistencyMode.DEFAULT One of: [DEFAULT] [STALE] [CONSISTENT] | "DEFAULT" | MEDIUM
| *camel.source.endpoint.datacenter* | The data center | null | MEDIUM
| *camel.source.endpoint.nearNode* | The near node to use for queries. | null | MEDIUM
| *camel.source.endpoint.nodeMeta* | The note meta-data to use for queries. | null | MEDIUM
| *camel.source.endpoint.synchronous* | Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported). | false | MEDIUM
| *camel.source.endpoint.blockSeconds* | The second to wait for a watch event, default 10 seconds | "10" | MEDIUM
| *camel.source.endpoint.firstIndex* | The first index for watch for, default 0 | "0" | MEDIUM
| *camel.source.endpoint.recursive* | Recursively watch, default false | false | MEDIUM
| *camel.source.endpoint.aclToken* | Sets the ACL token to be used with Consul | null | MEDIUM
| *camel.source.endpoint.password* | Sets the password to be used for basic authentication | null | MEDIUM
| *camel.source.endpoint.sslContextParameters* | SSL configuration using an org.apache.camel.support.jsse.SSLContextParameters instance. | null | MEDIUM
| *camel.source.endpoint.userName* | Sets the username to be used for basic authentication | null | MEDIUM
| *camel.component.consul.aclToken* | Sets the ACL token to be used with Consul | null | MEDIUM
| *camel.component.consul.datacenter* | The data center | null | MEDIUM
| *camel.component.consul.password* | Sets the password to be used for basic authentication | null | MEDIUM
| *camel.component.consul.sslContextParameters* | SSL configuration using an org.apache.camel.support.jsse.SSLContextParameters instance. | null | MEDIUM
| *camel.component.consul.url* | The Consul agent URL | null | MEDIUM
| *camel.component.consul.userName* | Sets the username to be used for basic authentication | null | MEDIUM
| *camel.component.consul.bridgeErrorHandler* | Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions occurred while the consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions, that will be logged at WARN or ERROR level and ignored. | false | MEDIUM
| *camel.component.consul.basicPropertyBinding* | Whether the component should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities | false | MEDIUM
| *camel.component.consul.configuration* | Sets the common configuration shared among endpoints | null | MEDIUM
| *camel.component.consul.useGlobalSslContext Parameters* | Enable usage of global SSL context parameters. | false | MEDIUM
|===
// kafka-connector options: END