Skip to content

Commit ce53caa

Browse files
committed
Remove standalone support in documentation
1 parent 941a553 commit ce53caa

File tree

1 file changed

+4
-4
lines changed
  • content/integrate/redis-data-integration/data-pipelines/prepare-dbs

1 file changed

+4
-4
lines changed

content/integrate/redis-data-integration/data-pipelines/prepare-dbs/mongodb.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ weight: 2
1919
This guide describes the steps required to prepare a MongoDB database as a source for Redis Data Integration (RDI) pipelines.
2020

2121
## Prerequisites
22-
- **MongoDB version:** 4.0 or later (standalone, replica set, sharded cluster, or MongoDB Atlas).
22+
- **MongoDB version:** 4.0 or later (replica set, sharded cluster, or MongoDB Atlas).
2323
- **User privileges:** You must have a MongoDB user with sufficient privileges to read the oplog and collections, and to use change streams (if required).
2424
- **Network access:** The RDI Collector must be able to connect to all MongoDB nodes in your deployment.
2525

@@ -65,11 +65,11 @@ Example (Replica Set):
6565
```
6666
mongodb://${SOURCE_DB_USERNAME}:${SOURCE_DB_PASSWORD}@host1:27017,host2:27017,host3:27017/?replicaSet=rs0&authSource=admin
6767
```
68-
- For standalone or Atlas, adjust the connection string accordingly.
68+
- For Atlas, adjust the connection string accordingly.
6969
- Set replicaSet and authSource as appropriate for your deployment.
7070

7171
## 4. Enable Change Streams and Pre/Post Images (Only if Using a Custom Key)
72-
Change Streams: Required only if you are using a custom key in your RDI pipeline. Change streams are available by default on replica sets, sharded clusters, and MongoDB Atlas. For standalone deployments, ensure your MongoDB version supports change streams.
72+
Change Streams: Required only if you are using a custom key in your RDI pipeline. Change streams are available by default on replica sets, sharded clusters, and MongoDB Atlas.
7373
Pre/Post Images: If you use a custom key and want to capture full document changes on updates and deletes, enable pre- and post-images on collections as needed:
7474
```javascript
7575
db.runCommand({
@@ -114,7 +114,7 @@ Or via the API `/collector/connection/validate` endpoint.
114114
## Summary Table
115115
| Requirement | Description |
116116
|---------------------|-----------------------------------------------------------------------------|
117-
| MongoDB Topology | Standalone, Replica Set, Sharded Cluster, or MongoDB Atlas |
117+
| MongoDB Topology | Replica Set, Sharded Cluster, or MongoDB Atlas |
118118
| User Roles | read, readAnyDatabase, clusterMonitor, changeStream |
119119
| Oplog | Sufficient size for snapshot and streaming |
120120
| Pre/Post Images | Enable on collections **only if using a custom key** |

0 commit comments

Comments
 (0)