Docs Home → MongoDB Kafka Connector
All Source Connector Configuration Properties
Overview
On this page, you can view all available configuration properties for your MongoDB Kafka source connector. This page duplicates the content of the other source connector configuration properties pages.
To view a list of all source connector configuration properties pages, see the Source Connector Configuration Properties page.
MongoDB Connection
Use the following configuration settings to specify how your source connector establishes a connection and communicates with your MongoDB cluster.
To view only the options related to your MongoDB connection, see the MongoDB Source Connection Properties page.
Name | Description |
---|---|
connection.uri | Required Type: string Description: The URI connection string
to connect to your MongoDB instance or cluster. For more information, see the Connect to MongoDB guide ImportantAvoid Exposing Your Authentication CredentialsTo avoid exposing your authentication credentials in your
Default: mongodb://localhost:27017,localhost:27018,localhost:27019 Accepted Values: A MongoDB URI connection string |
database | Type: string Description: Name of the database to watch for changes. If not set, the connector
watches all databases for changes. Default: "" Accepted Values: A single database name |
collection | Type: string Description: Name of the collection in the database to watch for changes. If not
set, the connector watches all collections for changes. ImportantIf your Default: "" Accepted Values: A single collection name |
Kafka Topic
Use the following configuration settings to specify which Kafka topics the source connector should publish data to.
To view only the options related to your Kafka topic, see the Kafka Topic Properties page.
Name | Description |
---|---|
topic.prefix | Type: string Description: The prefix to prepend to database and collection names to
generate the name of the Kafka topic on which to publish the data. TipSee also:Default: "" Accepted Values: A string composed of ASCII alphanumeric
characters including ".", "-", and "_" |
Change Streams
Use the following configuration settings to specify aggregation pipelines for change streams and read preferences for change stream cursors.
To view only the options related to change streams, see the Change Stream Properties page.
Name | Description | |
---|---|---|
pipeline | Type: string Description: An array of aggregation pipelines to run in your change stream.
You must configure this setting for the change stream
event document, not the fullDocument field.Example
TipAdditional ExamplesDefault: "[]" Accepted Values: Valid aggregation pipeline stage | |
change.stream.full.document | Type: string Description: Determines what values your change stream returns on update
operations. The default setting returns the differences between the original
document and the updated document.The updateLookup setting returns the differences between the
original document and updated document as well as a copy of the
entire updated document at a point in time after the update.TipFor more information on how this change stream option works, see the MongoDB server manual guide on Lookup Full Document for Update Operations. Default: "" Accepted Values: "" or "default" or "updateLookup" | |
publish.full.document.only | Type: boolean Description: Whether to return only the fullDocument field from the
change stream event document produced by any update event. The fullDocument field
contains the most current version of the updated document. To
learn more about the fullDocument field, see the Server
manual page on update events.When set to true , the connector overrides the
change.stream.full.document setting and sets it to
updateLookup so that the fullDocument field contains
updated documents.Default: false Accepted Values: true or false | |
collation | Type: string Description: A JSON collation document
that specifies language-specific ordering rules that MongoDB
applies to the documents returned by the change stream. Default: "" Accepted Values: A valid collation JSON document | |
batch.size | Type: int Description: The change stream cursor batch size. Default: 0 Accepted Values: An integer | |
poll.await.time.ms | Type: long Description: The amount of time in milliseconds to wait before checking the change
stream cursor for new results. Default: 5000 Accepted Values: An integer | |
poll.max.batch.size | Type: int Description: Maximum number of documents to read in a single batch when polling
a change stream cursor for new data. You can use this setting to
limit the amount of data buffered internally in the connector. Default: 1000 Accepted Values: An integer |
Copy Existing
Use the following configuration settings to enable the copy existing feature which converts MongoDB collections into Change Stream events.
To view only the options related to copying data, see the Copy Existing Properties page.
Name | Description |
---|---|
copy.existing | Type: boolean Description: Whether to enable the copy existing feature which converts all
data in a MongoDB collection to Change Stream events and
publishes them on Kafka topics. If MongoDB changes the source
collection data after the connector starts the copy process, the
connector creates events for the changes after it completes the copy
process. Default: false Accepted Values: true or false |
copy.existing.max.threads | Type: int Description: The maximum number of threads the connector can use to copy data. Default: number of processors available in the environment Accepted Values: An integer |
copy.existing.queue.size | Type: int Description: The size of the queue the connector can use when copying data. Default: 16000 Accepted Values: An integer |