Skip to content

Commit ba4f80c

Browse files
authored
Platform: Qdrant destination connector (#385)
1 parent 14ccada commit ba4f80c

File tree

6 files changed

+43
-3
lines changed

6 files changed

+43
-3
lines changed

mint.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -501,6 +501,7 @@
501501
"platform/destinations/mongodb",
502502
"platform/destinations/onedrive",
503503
"platform/destinations/pinecone",
504+
"platform/destinations/qdrant",
504505
"platform/destinations/s3",
505506
"platform/destinations/weaviate"
506507
]

platform/connectors.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ If your source is not listed here, you might still be able to connect Unstructur
4444
- [MongoDB](/platform/destinations/mongodb)
4545
- [OneDrive](/platform/destinations/onedrive)
4646
- [Pinecone](/platform/destinations/pinecone)
47+
- [Qdrant](/platform/destinations/qdrant)
4748
- [S3](/platform/destinations/s3)
4849
- [Weaviate](/platform/destinations/weaviate)
4950

platform/destinations/overview.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ To create a destination connector:
2828
- [MongoDB](/platform/destinations/mongodb)
2929
- [OneDrive](/platform/destinations/onedrive)
3030
- [Pinecone](/platform/destinations/pinecone)
31+
- [Qdrant](/platform/destinations/qdrant)
3132
- [S3](/platform/destinations/s3)
3233
- [Weaviate](/platform/destinations/weaviate)
3334

platform/destinations/qdrant.mdx

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
title: Qdrant
3+
---
4+
5+
Send processed data from Unstructured to Qdrant.
6+
7+
The requirements are as follows.
8+
9+
import QdrantPrerequisites from '/snippets/general-shared-text/qdrant.mdx';
10+
11+
<QdrantPrerequisites />
12+
13+
To create the destination connector:
14+
15+
1. On the sidebar, click **Connectors**.
16+
2. Click **Destinations**.
17+
3. Cick **New** or **Create Connector**.
18+
4. Give the connector some unique **Name**.
19+
5. In the **Provider** area, click **Qdrant**.
20+
6. Click **Continue**.
21+
7. Follow the on-screen instructions to fill in the fields as described later on this page.
22+
8. Click **Save and Test**.
23+
24+
import QdrantFields from '/snippets/general-shared-text/qdrant-platform.mdx';
25+
26+
<QdrantFields />
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Fill in the following fields:
2+
3+
- **Name** (_required_): A unique name for this connector.
4+
- **URL** (_required_): The target Qdrant cluster's URL.
5+
- **Collection Name** (_required_): The name of the target collection on the cluster.
6+
- **Batch Size** The maximum number of records to be transmitted per batch. The default is `50` if not otherwise specified.
7+
- **API Key** (_required_): The Qdrant API key value.

snippets/general-shared-text/qdrant.mdx

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1-
- For [Qdrant local](https://github.com/qdrant/qdrant), the path to the local Qdrant installation, for example: `/qdrant/local`
2-
- For [Qdrant client-server](https://qdrant.tech/documentation/quickstart/), the Qdrant server URL, for example: `http://localhost:6333`
3-
- For [Qdrant Cloud](https://qdrant.tech/documentation/cloud-intro/):
1+
- For the [Unstructured Platform](/platform/overview), only [Qdrant Cloud](https://qdrant.tech/documentation/cloud-intro/) is supported.
2+
- For [Unstructured Ingest](/ingestion/overview), Qdrant Cloud,
3+
[Qdrant local](https://github.com/qdrant/qdrant), and [Qdrant client-server](https://qdrant.tech/documentation/quickstart/) are supported.
4+
5+
- For Qdrant local, the path to the local Qdrant installation, for example: `/qdrant/local`
6+
- For Qdrant client-server, the Qdrant server URL, for example: `http://localhost:6333`
7+
- For Qdrant Cloud:
48

59
- A [Qdrant account](https://cloud.qdrant.io/login).
610
- A [Qdrant cluster](https://qdrant.tech/documentation/cloud/create-cluster/).

0 commit comments

Comments
 (0)