Cloud Providers
Connect Mingo to MongoDB Atlas, Amazon DocumentDB, and FerretDB instances.
Mingo supports connecting to various MongoDB-compatible cloud providers and alternative backends.
MongoDB Atlas
Connect to Atlas clusters using the SRV connection string provided in the Atlas dashboard:
- Go to your Atlas cluster and click Connect
- Choose Connect your application
- Copy the connection string (starts with
mongodb+srv://) - Paste it into Mingo's connection form
Atlas clusters work with all Mingo features including the Aggregator, Schema Analyzer, and Dump & Restore.
Atlas Search
If your Atlas cluster has Atlas Search indexes configured, Mingo supports $search and $searchMeta aggregation stages in the Aggregator.
Amazon DocumentDB
Amazon DocumentDB is compatible with the MongoDB API. Connect using your DocumentDB cluster endpoint:
- Create a connection in Mingo
- Paste your DocumentDB URI
- Enable TLS and provide the Amazon RDS CA certificate
- If needed, configure an SSH tunnel to reach private VPC endpoints
Note that DocumentDB does not support all MongoDB features. Some aggregation stages and operations may not be available.
FerretDB
FerretDB is an open-source MongoDB alternative that uses PostgreSQL or SQLite as a backend. Mingo detects FerretDB connections automatically and adjusts the available features accordingly.
When connected to FerretDB, Mingo:
- Hides unsupported aggregation stages
- Adjusts available query operators
- Adapts index management to supported operations
Connect using your FerretDB URI just like any standard MongoDB connection.