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/11/20 11:15:20 UTC

[camel-kafka-connector] branch idempotency-docs created (now 86432ba)

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

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


      at 86432ba  Added documentation for idempotency in basic configuration docs

This branch includes the following new commits:

     new 86432ba  Added documentation for idempotency in basic configuration docs

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 documentation for idempotency in basic configuration docs

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

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

commit 86432bad2165046104f620de204f16b2bed8f4af
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Nov 20 12:03:03 2020 +0100

    Added documentation for idempotency in basic configuration docs
---
 docs/modules/ROOT/pages/basic-configuration.adoc | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/docs/modules/ROOT/pages/basic-configuration.adoc b/docs/modules/ROOT/pages/basic-configuration.adoc
index d985357..89f88e9 100644
--- a/docs/modules/ROOT/pages/basic-configuration.adoc
+++ b/docs/modules/ROOT/pages/basic-configuration.adoc
@@ -17,6 +17,13 @@ For a Sink connector the basic options are:
 | camel.error.handler | The error handler to use: possible value are 'no' or 'default' | default | MEDIUM
 | camel.error.handler.max.redeliveries | The maximum redeliveries to be use in case of Default Error Handler | 0 | MEDIUM
 | camel.error.handler.redelivery.delay | The initial redelivery delay in milliseconds in case of Default Error Handler | 1000L | MEDIUM
+| camel.idempotency.enabled | If idempotency must be enabled or not | false | LOW
+| camel.idempotency.repository.type | The idempotent repository type to use, possible values are memory and kafka | memory | LOW
+| camel.idempotency.expression.type | How the idempotency will be evaluated: possible values are body and header | body | LOW
+| camel.idempotency.expression.header | The header name that will be evaluated in case of camel.idempotency.expression.type equals to header | null | LOW
+| 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
 |===
 
 For a Source connector the basic options are:
@@ -39,6 +46,13 @@ For a Source connector the basic options are:
 | camel.error.handler | The error handler to use: possible value are 'no' or 'default' | default | MEDIUM
 | camel.error.handler.max.redeliveries | The maximum redeliveries to be use in case of Default Error Handler | 0 | MEDIUM
 | camel.error.handler.redelivery.delay | The initial redelivery delay in milliseconds in case of Default Error Handler | 1000L | MEDIUM
+| camel.idempotency.enabled | If idempotency must be enabled or not | false | LOW
+| camel.idempotency.repository.type | The idempotent repository type to use, possible values are memory and kafka | memory | LOW
+| camel.idempotency.expression.type | How the idempotency will be evaluated: possible values are body and header | body | LOW
+| camel.idempotency.expression.header | The header name that will be evaluated in case of camel.idempotency.expression.type equals to header | null | LOW
+| 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
 |===
 
 For more options related to single connector you can have a look at xref:connectors.adoc[Connectors list].