This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch 247-not-secured in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git
commit c9e0b20a5abe23c96ffa19cafd9d09260f30e193 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Tue May 11 13:11:11 2021 +0200 Kafka Not Secured Source Kamelet: Added options --- docs/modules/ROOT/pages/kafka-not-secured-source.adoc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/modules/ROOT/pages/kafka-not-secured-source.adoc b/docs/modules/ROOT/pages/kafka-not-secured-source.adoc index 6620a9b..5178af6 100644 --- a/docs/modules/ROOT/pages/kafka-not-secured-source.adoc +++ b/docs/modules/ROOT/pages/kafka-not-secured-source.adoc @@ -13,6 +13,10 @@ The following table summarizes the configuration options available for the `kafk | Property| Name| Description| Type| Default| Example | *brokers {empty}* *| Brokers| Comma separated list of Kafka Broker URLs| string| | | *topic {empty}* *| Topic Names| Comma separated list of Kafka topic names| string| | +| allowManualCommit| Allow Manual Commit| Whether to allow doing manual commits| boolean| `false`| +| autoCommitEnable| Auto Commit Enable| If true, periodically commit to ZooKeeper the offset of messages already fetched by the consumer| boolean| `true`| +| autoOffsetReset| Auto Offset Reset| What to do when there is no initial offset. There are 3 enums and the value can be one of latest, earliest, none| string| `"latest"`| +| pollOnError| Poll On Error Behavior| 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| string| `"ERROR_HANDLER"`| |=== NOTE: Fields marked with ({empty}*) are mandatory.