diff --git a/mint.json b/mint.json index 1078e82d..c734b163 100644 --- a/mint.json +++ b/mint.json @@ -443,6 +443,7 @@ "platform/destinations/overview", "platform/destinations/azure-cognitive-search", "platform/destinations/milvus", + "platform/destinations/mongodb", "platform/destinations/pinecone", "platform/destinations/s3" ] diff --git a/platform/connectors.mdx b/platform/connectors.mdx index 8d2082fb..d351a621 100644 --- a/platform/connectors.mdx +++ b/platform/connectors.mdx @@ -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) diff --git a/platform/destinations/overview.mdx b/platform/destinations/overview.mdx index 8f668771..2b2758d5 100644 --- a/platform/destinations/overview.mdx +++ b/platform/destinations/overview.mdx @@ -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) diff --git a/snippets/general-shared-text/mongodb-platform.mdx b/snippets/general-shared-text/mongodb-platform.mdx index 4ba92e71..d7c010d8 100644 --- a/snippets/general-shared-text/mongodb-platform.mdx +++ b/snippets/general-shared-text/mongodb-platform.mdx @@ -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. \ No newline at end of file +- **Collection** (_required_): The name of the collection within the database. \ No newline at end of file diff --git a/snippets/general-shared-text/mongodb.mdx b/snippets/general-shared-text/mongodb.mdx index cf534103..94a5630c 100644 --- a/snippets/general-shared-text/mongodb.mdx +++ b/snippets/general-shared-text/mongodb.mdx @@ -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). + +- 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). - - - - 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). \ No newline at end of file