Skip to content

Commit

Permalink
MongoDB Source Kamelet: Added persistentTailTracking support
Browse files Browse the repository at this point in the history
  • Loading branch information
oscerd committed Jun 25, 2021
1 parent 0ccad87 commit 6c3811e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docs/modules/ROOT/pages/mongodb-source.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@

*Support Level for this Kamelet is: "Preview"*

Consume documents from MongoDB
Consume documents from MongoDB.

If the persistentTailTracking option will be enabled, the consumer will keep track of the last consumed message and on the next restart, the consumption will restart from that message. In case of persistentTailTracking enabled, the tailTrackIncreasingField must be provided (by default it is optional).

If the persistentTailTracking option won't be enabled, the consumer will consume the whole collection and wait in idle for new documents to consume.

== Configuration Options

Expand All @@ -18,6 +22,8 @@ The following table summarizes the configuration options available for the `mong
| *hosts {empty}* *| MongoDB Hosts| Comma separated list of MongoDB Host Addresses in host:port format.| string| |
| *password {empty}* *| MongoDB Password| User password for accessing MongoDB.| string| |
| *username {empty}* *| MongoDB Username| Username for accessing MongoDB.| string| |
| persistentTailTracking| MongoDB Persistent Tail Tracking| Enable persistent tail tracking, which is a mechanism to keep track of the last consumed message across system restarts. The next time the system is up, the endpoint will recover the cursor from the point where it last stopped slurping records.| boolean| `false`|
| tailTrackIncreasingField| MongoDB Tail Track Increasing Field| Correlation field in the incoming record which is of increasing nature and will be used to position the tailing cursor every time it is generated.| string| |
|===

NOTE: Fields marked with ({empty}*) are mandatory.
Expand Down

0 comments on commit 6c3811e

Please sign in to comment.