Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Kafka idempotent repository cache size and poll timeout docs in… #809

Merged
merged 1 commit into from Dec 17, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/modules/ROOT/pages/basic-configuration.adoc
Expand Up @@ -25,6 +25,8 @@ For a Sink connector the basic options are:
| camel.idempotency.memory.dimension | The Memory dimension of the in memory idempotent Repository | 100 | LOW
| camel.idempotency.kafka.topic | The Kafka topic name to use for the idempotent repository | kafka_idempotent_repository | LOW
| camel.idempotency.kafka.bootstrap.servers | A comma-separated list of host and port pairs that are the addresses of the Kafka brokers where the idempotent repository should live | localhost:9092 | LOW
| camel.idempotency.kafka.max.cache.size | Sets the maximum size of the local key cache | 1000 | LOW
| camel.idempotency.kafka.poll.duration.ms | Sets the poll duration (in milliseconds) of the Kafka consumer | 100 | LOW
|===

For a Source connector the basic options are:
Expand Down Expand Up @@ -55,6 +57,8 @@ For a Source connector the basic options are:
| camel.idempotency.memory.dimension | The Memory dimension of the in memory idempotent Repository | 100 | LOW
| camel.idempotency.kafka.topic | The Kafka topic name to use for the idempotent repository | kafka_idempotent_repository | LOW
| camel.idempotency.kafka.bootstrap.servers | A comma-separated list of host and port pairs that are the addresses of the Kafka brokers where the idempotent repository should live | localhost:9092 | LOW
| camel.idempotency.kafka.max.cache.size | Sets the maximum size of the local key cache | 1000 | LOW
| camel.idempotency.kafka.poll.duration.ms | Sets the poll duration (in milliseconds) of the Kafka consumer | 100 | LOW
|===

For more options related to single connector you can have a look at xref:connectors.adoc[Connectors list].