Mongo DB
Airbyte's certified MongoDB connector offers the following features:
- Change Data Capture (CDC) via MongoDB's change streams/Replica Set Oplog.
- Reliable replication of any collection size with checkpointing and chunking of data reads.
Quick Start
This section provides information about configuring the MongoDB V2 source connector. If you are upgrading from a previous version of the MongoDB V2 source connector, please refer to the upgrade instructions in this document.
New Installation/New Source Connector Configuration
Here is an outline of the minimum required steps to configure a new MongoDB V2 source connector:
- Create or discover the configuration of a MongoDB replica set, either hosted in MongoDB Atlas or self-hosted.
- Create a new MongoDB source in the Airbyte UI
- (Airbyte Cloud Only) Allow inbound traffic from Airbyte IPs
Once this is complete, you will be able to select MongoDB as a source for replicating data.
Step 1: Create a dedicated read-only MongoDB user
These steps create a dedicated, read-only user for replicating data. Alternatively, you can use an existing MongoDB user with access to the database.
MongoDB Atlas
- Log in to the MongoDB Atlas dashboard.
- From the dashboard, click on "Database Access" under "Security"
- Click on the "+ ADD NEW DATABASE USER" button.
- On the "Add new Database User" modal dialog, choose "Password" for the "Authentication Method".
- In the "Password Authentication" section, set the username to
READ_ONLY_USER
in the first text box and set a password in the second text box.
- Under "Database User Privileges", click on "Select one built-in role for this user" under "Built-in Role" and choose "Only read any database".
- Enable "Restrict Access to Specific Clusters/Federated Database instances" and enable only those clusters/database that you wish to replicate.
- Click on "Add User" at the bottom to save the user.
Self Hosted
These instructions assume that the MongoDB shell is installed. To install the MongoDB shell, please follow these instructions.
- From a terminal window, launch the MongoDB shell:
> mongosh <connection string to cluster> --username <user with admin permissions>;
- Switch to the
admin
database:
test> use admin
switched to db admin
- Create the
READ_ONLY_USER
user with theread
role:
admin> db.createUser({user: "READ_ONLY_USER", pwd: "READ_ONLY_PASSWORD", roles: [{role: "read", db: "TARGET_DATABASE"}]})
Replace READ_ONLY_PASSWORD
with a password of your choice and TARGET_DATABASE
with the name of the database to be replicated.
- Next, enable authentication, if not already enabled. Start by editing the
/etc/mongodb.conf
by adding/editing these specific keys:
net:
bindIp: 0.0.0.0
security:
authorization: enabled
Setting the bindIp
key to 0.0.0.0
will allow connections to database from any IP address. Setting the security.authorization
key to enabled
will enable security and only allow authenticated users to access the database.
Step 2: Discover the MongoDB cluster connection string
These steps outline how to discover the connection string of your MongoDB instance.
MongoDB Atlas
Atlas is MongoDB's cloud-hosted offering. Below are the steps to discover the connection configuration for a MongoDB Atlas-hosted replica set cluster:
- Log in to the MongoDB Atlas dashboard.
- From the dashboard, click on the "Connect" button of the source cluster.
- On the "Connect to <cluster name>" modal dialog, select "Shell" under the "Access your data through tools" section.
- Copy the connection string from the entry labeled "2. Run your connection string in your command line" on the modal dialog, removing/avoiding the quotation marks.
Self Hosted Cluster
Self-hosted clusters are MongoDB instances that are hosted outside of MongoDB Atlas. Below are the steps to discover the connection string for a MongoDB self-hosted replica set cluster.
- Refer to the MongoDB connection string documentation for instructions on discovering a self-hosted deployment connection string.
Step 3: Configure the Airbyte MongoDB Source
To configure the Airbyte MongoDB source, use the database credentials and connection string from steps 1 and 2, respectively. The source will test the connection to the MongoDB instance upon creation.
Upgrade From Previous Version
The 1.0.0 version of the MongoDB V2 source connector contains breaking changes from previous versions of the connector.
The quickest upgrade path is to click upgrade on any out-of-date connection in the UI. These connections will display the following message banner:
Action Required There is a pending upgrade for MongoDB.
Version 1.0.0: We advise against upgrading until you have run a test upgrade as outlined here. This version brings a host of updates to the MongoDB source connector, significantly increasing its scalability and reliability, especially for large collections. As of this version with checkpointing, CDC incremental updates and improved schema discovery, this connector is also now certified. Selecting
Upgrade
will upgrade all connections using this source, require you to reconfigure the source, then run a full reset on all of your connections.Upgrade MongoDB by Dec 1, 2023 to continue syncing with this source. For more information, see this guide.
After upgrading to the latest version of the MongoDB V2 source connector, users will be required to manually re-configure existing MongoDB V2 source connector configurations. The required configuration parameter values can be discovered using the quick start steps in this documentation.
Replication Methods
The MongoDB source utilizes change data capture (CDC) as a reliable way to keep your data up to date.
CDC
Airbyte utilizes the change streams feature of a MongoDB replica set to incrementally capture inserts, updates and deletes using a replication plugin. To learn more how Airbyte implements CDC, refer to Change Data Capture (CDC).
Limitations & Troubleshooting
- Only supports replica set cluster type.
- Schema discovery uses sampling of the documents to collect all distinct top-level fields. This value is universally applied to all collections discovered in the target database. The approach is modelled after MongoDB Compass sampling and is used for efficiency. By default, 10,000 documents are sampled. This value can be increased up to 100,000 documents to increase the likelihood that all fields will be discovered. However, the trade-off is time, as a higher value will take the process longer to sample the collection.
- TLS/SSL is required by this connector. TLS/SSL is enabled by default for MongoDB Atlas clusters. To enable TSL/SSL connection for a self-hosted MongoDB instance, please refer to MongoDb Documentation.
- Views, capped collections and clustered collections are not supported.
- Empty collections are excluded from schema discovery.
- Collections with different data types for the values in the
_id
field among the documents in a collection are not supported. All_id
values within the collection must be the same data type. - MongoDB's change streams are based on the Replica Set Oplog, which has retention limitations. Syncs that run less frequently than the retention period of the oplog may encounter issues with missing data.
Configuration Parameters
Parameter Name | Description |
---|---|
Cluster Type | The type of the MongoDB cluster (MongoDB Atlas replica set or self-hosted replica set). |
Connection String | The connection string of the source MongoDB cluster. For Atlas hosted clusters, see the quick start guide for steps to find the connection string. For self-hosted clusters, refer to the MongoDB connection string documentation for more information. |
Database Name | The name of the database that contains the source collection(s) to sync. |
Username | The username which is used to access the database. Required for MongoDB Atlas clusters. |
Password | The password associated with this username. Required for MongoDB Atlas clusters. |
Authentication Source | (MongoDB Atlas clusters only) Specifies the database that the supplied credentials should be validated against. Defaults to admin . See the MongoDB documentation for more details. |
Initial Waiting Time in Seconds (Advanced) | The amount of time the connector will wait when it launches to determine if there is new data to sync or not. Defaults to 300 seconds. Valid range: 120 seconds to 1200 seconds. |
Size of the queue (Advanced) | The size of the internal queue. This may interfere with memory consumption and efficiency of the connector, please be careful. |
Discovery Sample Size (Advanced) | The maximum number of documents to sample when attempting to discover the unique fields for a collection. Default is 10,000 with a valid range of 1,000 to 100,000. See the MongoDB sampling method for more details. |
For more information regarding configuration parameters, please see MongoDb Documentation.
Changelog
Version | Date | Pull Request | Subject |
---|---|---|---|
1.0.1 | 2023-10-03 | 31034 | Fix field filtering logic related to nested documents |
1.0.0 | 2023-10-03 | 29969 | General availability release using Change Data Capture (CDC) |
0.2.5 | 2023-07-27 | 28815 | Revert back to version 0.2.0 |
0.2.4 | 2023-07-26 | 28760 | Fix bug preventing some syncs from succeeding when collecting stats |
0.2.3 | 2023-07-26 | 28733 | Fix bug preventing syncs from discovering field types |
0.2.2 | 2023-07-25 | 28692 | Fix bug preventing statistics retrieval from views |
0.2.1 | 2023-07-21 | 28527 | Log server information |
0.2.0 | 2023-06-26 | 27737 | License Update: Elv2 |
0.1.19 | 2022-10-07 | 17614 | Increased discover performance |
0.1.18 | 2022-10-05 | 17590 | Add ability to enforce SSL in MongoDB connector and check logic |
0.1.17 | 2022-09-08 | 16401 | Fixed bug with empty strings in fields with aibyte_transform |
0.1.16 | 2022-08-18 | 14356 | DB Sources: only show a table can sync incrementally if at least one column can be used as a cursor field |
0.1.15 | 2022-06-17 | 13864 | Updated stacktrace format for any trace message errors |
0.1.14 | 2022-05-05 | 12428 | JsonSchema: Add properties to fields with type 'object' |
0.1.13 | 2022-02-21 | 10276 | Create a custom codec registry to handle DBRef MongoDB objects |
0.1.12 | 2022-02-14 | 10256 | (unpublished) Add -XX:+ExitOnOutOfMemoryError JVM option |
0.1.11 | 2022-01-10 | 9238 | Return only those collections for which the user has privileges |
0.1.10 | 2021-12-30 | 9202 | Update connector fields title/description |
0.1.9 | 2021-12-07 | 8491 | Configure 10000 limit doc reading during Discovery step |
0.1.8 | 2021-11-29 | 8306 | Added milliseconds for date format for cursor |
0.1.7 | 2021-11-22 | 8161 | Updated Performance and updated cursor for timestamp type |
0.1.5 | 2021-11-17 | 8046 | Added milliseconds to convert timestamp to datetime format |
0.1.4 | 2021-11-15 | 7982 | Updated Performance |
0.1.3 | 2021-10-19 | 7160 | Fixed nested document parsing |
0.1.2 | 2021-10-07 | 6860 | Added filter to avoid MongoDb system collections |
0.1.1 | 2021-09-21 | 6364 | Source MongoDb: added support via TLS/SSL |
0.1.0 | 2021-08-30 | 5530 | New source: MongoDb ported to java |