You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/12/17 13:45:49 UTC

[camel-kafka-connector] branch options-idempotency created (now d64121c)

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a change to branch options-idempotency
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git.


      at d64121c  Added Kafka idempotent repository cache size and poll timeout docs information

This branch includes the following new commits:

     new d64121c  Added Kafka idempotent repository cache size and poll timeout docs information

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[camel-kafka-connector] 01/01: Added Kafka idempotent repository cache size and poll timeout docs information

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch options-idempotency
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git

commit d64121c6f16aef9af6df3daa7731d1dd89ac3c43
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Dec 17 14:44:32 2020 +0100

    Added Kafka idempotent repository cache size and poll timeout docs information
---
 docs/modules/ROOT/pages/basic-configuration.adoc | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/docs/modules/ROOT/pages/basic-configuration.adoc b/docs/modules/ROOT/pages/basic-configuration.adoc
index 0a9da39..63b0967 100644
--- a/docs/modules/ROOT/pages/basic-configuration.adoc
+++ b/docs/modules/ROOT/pages/basic-configuration.adoc
@@ -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:
@@ -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].