Skip to content

Commit 4a50554

Browse files
authored
MongoDB destination connector for Platform (#291)
1 parent 5f4dee4 commit 4a50554

File tree

5 files changed

+14
-18
lines changed

5 files changed

+14
-18
lines changed

mint.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -445,6 +445,7 @@
445445
"platform/destinations/overview",
446446
"platform/destinations/azure-cognitive-search",
447447
"platform/destinations/milvus",
448+
"platform/destinations/mongodb",
448449
"platform/destinations/pinecone",
449450
"platform/destinations/s3"
450451
]

platform/connectors.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ If your source is not listed here, you might still be able to connect Unstructur
2323

2424
- [Azure Cognitive Search](/platform/destinations/azure-cognitive-search)
2525
- [Milvus](/platform/destinations/milvus)
26+
- [MongoDB](/platform/destinations/mongodb)
2627
- [Pinecone](/platform/destinations/pinecone)
2728
- [S3](/platform/destinations/s3)
2829

platform/destinations/overview.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ To create a destination connector:
1616

1717
- [Azure Cognitive Search](/platform/destinations/azure-cognitive-search)
1818
- [Milvus](/platform/destinations/milvus)
19+
- [MongoDB](/platform/destinations/mongodb)
1920
- [Pinecone](/platform/destinations/pinecone)
2021
- [S3](/platform/destinations/s3)
2122

snippets/general-shared-text/mongodb-platform.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ Fill in the following fields:
33
- **Name** (_required_): A unique name for this connector.
44
- **URI** (_required_): The MongoDB instance connection URI.
55
- **Database** (_required_): The name of the database on the instance.
6-
- **Collection**: The name of the collection within the database.
6+
- **Collection** (_required_): The name of the collection within the database.
Lines changed: 10 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,20 @@
11
The MongoDB prerequisites for a MongoDB Atlas deployment:
22

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

13+
- A MongoDB Atlas account. [Create an account](https://www.mongodb.com/cloud/atlas/register).
514
- A MongoDB Atlas cluster. [Create a cluster](https://www.mongodb.com/docs/atlas/tutorial/deploy-free-tier-cluster).
6-
7-
<iframe
8-
width="560"
9-
height="315"
10-
src="https://www.youtube.com/embed/VkXvVOb99g0"
11-
title="YouTube video player"
12-
frameborder="0"
13-
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
14-
allowfullscreen
15-
></iframe>
16-
1715
- The cluster must be reachable from your application environment. [Learn how](https://www.mongodb.com/docs/atlas/setup-cluster-security/#network-and-firewall-requirements).
18-
1916
- The cluster must be configured to use your IP address. [Learn how](https://www.mongodb.com/docs/atlas/setup-cluster-security/#ip-access-list).
20-
2117
- The cluster must have at least one database. [Create a database](https://www.mongodb.com/docs/compass/current/databases/#create-a-database).
22-
2318
- 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/).
24-
2519
- The database must have at least one collection. [Create a collection](https://www.mongodb.com/docs/compass/current/collections/#create-a-collection).
26-
2720
- 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).

0 commit comments

Comments
 (0)