MongoDB Atlas
MongoDB Atlas is MongoDB's fully managed cloud database service, delivering the power of MongoDB across AWS, Google Cloud, and Azure with enterprise-grade security and global scalability.
Supported Versions and Architectures
- Versions: MongoDB Atlas 5.x, 6.x, 7.x
- Architectures: Replica sets, sharded clusters, serverless instances
Supported Data Types
Category | Data Types |
---|---|
Strings and Code | String, JavaScript, Symbol |
Numeric Types | Double, Int32, Int64, Decimal128 |
Document and Array | Document, Array |
Binary and ObjectId | Binary, ObjectId |
Boolean Type | Boolean |
Date and Timestamp | Date, Timestamp |
Special Types | Min Key, Max Key, Null |
Quick Setup Guide
1. Configure Network Access
In MongoDB Atlas console:
- Navigate to Network Access
- Click ADD IP ADDRESS
- Add your XPipes Engine IP address (CIDR format)
2. Create Database User
- Go to Database Access
- Click ADD NEW DATABASE USER
- Choose authentication method and assign roles:
- Source database: "Read any database" role
- Target database: "Read and write any database" role
3. Get Connection String
- Navigate to Database → Connect
- Select Connect your application
- Copy the connection URI
Example connection string:
mongodb+srv://xpipes:password@cluster0.xxxxx.mongodb.net/your_database?retryWrites=true&w=majority
tip
Always specify the target database name in the connection string to avoid connection errors.
Connection Options
- Direct connection: Standard connection with proper firewall rules
- TLS/SSL tunnel: Connect through a secure tunnel for private networks
Limitations
- URI-only connection: Atlas requires connection via URI format
- Network access: Requires IP whitelisting for security
- Database specification: Must specify target database in connection string