Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions mint.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,6 +443,7 @@
"platform/destinations/overview",
"platform/destinations/azure-cognitive-search",
"platform/destinations/milvus",
"platform/destinations/mongodb",
"platform/destinations/pinecone",
"platform/destinations/s3"
]
Expand Down
1 change: 1 addition & 0 deletions platform/connectors.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ If your source is not listed here, you might still be able to connect Unstructur

- [Azure Cognitive Search](/platform/destinations/azure-cognitive-search)
- [Milvus](/platform/destinations/milvus)
- [MongoDB](/platform/destinations/mongodb)
- [Pinecone](/platform/destinations/pinecone)
- [S3](/platform/destinations/s3)

Expand Down
1 change: 1 addition & 0 deletions platform/destinations/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ To create a destination connector:

- [Azure Cognitive Search](/platform/destinations/azure-cognitive-search)
- [Milvus](/platform/destinations/milvus)
- [MongoDB](/platform/destinations/mongodb)
- [Pinecone](/platform/destinations/pinecone)
- [S3](/platform/destinations/s3)

Expand Down
2 changes: 1 addition & 1 deletion snippets/general-shared-text/mongodb-platform.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ Fill in the following fields:
- **Name** (_required_): A unique name for this connector.
- **URI** (_required_): The MongoDB instance connection URI.
- **Database** (_required_): The name of the database on the instance.
- **Collection**: The name of the collection within the database.
- **Collection** (_required_): The name of the collection within the database.
27 changes: 10 additions & 17 deletions snippets/general-shared-text/mongodb.mdx
Original file line number Diff line number Diff line change
@@ -1,27 +1,20 @@
The MongoDB prerequisites for a MongoDB Atlas deployment:

- A MongoDB Atlas account. [Create an account](https://www.mongodb.com/cloud/atlas/register).
<iframe
width="560"
height="315"
src="https://www.youtube.com/embed/g6qDfbg808M"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>

- A MongoDB Atlas account. [Create an account](https://www.mongodb.com/cloud/atlas/register).
- A MongoDB Atlas cluster. [Create a cluster](https://www.mongodb.com/docs/atlas/tutorial/deploy-free-tier-cluster).

<iframe
width="560"
height="315"
src="https://www.youtube.com/embed/VkXvVOb99g0"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>

- The cluster must be reachable from your application environment. [Learn how](https://www.mongodb.com/docs/atlas/setup-cluster-security/#network-and-firewall-requirements).

- The cluster must be configured to use your IP address. [Learn how](https://www.mongodb.com/docs/atlas/setup-cluster-security/#ip-access-list).

- The cluster must have at least one database. [Create a database](https://www.mongodb.com/docs/compass/current/databases/#create-a-database).

- The database must have at least one user, and that user must have sufficient access to the database. [Create a database user](https://www.mongodb.com/docs/atlas/security-add-mongodb-users/#add-database-users). [Give the user database access](https://www.mongodb.com/docs/manual/core/authorization/).

- The database must have at least one collection. [Create a collection](https://www.mongodb.com/docs/compass/current/collections/#create-a-collection).

- The URI for the cluster. This URI must include the protocol, username, password, and host. [Learn how to get this value](https://www.mongodb.com/resources/products/fundamentals/mongodb-connection-string).