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 @@ -495,6 +495,7 @@
"platform/destinations/mongodb",
"platform/destinations/onedrive",
"platform/destinations/pinecone",
"platform/destinations/qdrant",
"platform/destinations/s3",
"platform/destinations/weaviate"
]
Expand Down
1 change: 1 addition & 0 deletions platform/connectors.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ If your source is not listed here, you might still be able to connect Unstructur
- [MongoDB](/platform/destinations/mongodb)
- [OneDrive](/platform/destinations/onedrive)
- [Pinecone](/platform/destinations/pinecone)
- [Qdrant](/platform/destinations/qdrant)
- [S3](/platform/destinations/s3)
- [Weaviate](/platform/destinations/weaviate)

Expand Down
1 change: 1 addition & 0 deletions platform/destinations/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ To create a destination connector:
- [MongoDB](/platform/destinations/mongodb)
- [OneDrive](/platform/destinations/onedrive)
- [Pinecone](/platform/destinations/pinecone)
- [Qdrant](/platform/destinations/qdrant)
- [S3](/platform/destinations/s3)
- [Weaviate](/platform/destinations/weaviate)

Expand Down
26 changes: 26 additions & 0 deletions platform/destinations/qdrant.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
title: Qdrant
---

Send processed data from Unstructured to Qdrant.

The requirements are as follows.

import QdrantPrerequisites from '/snippets/general-shared-text/qdrant.mdx';

<QdrantPrerequisites />

To create the destination connector:

1. On the sidebar, click **Connectors**.
2. Click **Destinations**.
3. Cick **New** or **Create Connector**.
4. Give the connector some unique **Name**.
5. In the **Provider** area, click **Qdrant**.
6. Click **Continue**.
7. Follow the on-screen instructions to fill in the fields as described later on this page.
8. Click **Save and Test**.

import QdrantFields from '/snippets/general-shared-text/qdrant-platform.mdx';

<QdrantFields />
7 changes: 7 additions & 0 deletions snippets/general-shared-text/qdrant-platform.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Fill in the following fields:

- **Name** (_required_): A unique name for this connector.
- **URL** (_required_): The target Qdrant cluster's URL.
- **Collection Name** (_required_): The name of the target collection on the cluster.
- **Batch Size** The maximum number of records to be transmitted per batch. The default is `50` if not otherwise specified.
- **API Key** (_required_): The Qdrant API key value.
10 changes: 7 additions & 3 deletions snippets/general-shared-text/qdrant.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
- For [Qdrant local](https://github.com/qdrant/qdrant), the path to the local Qdrant installation, for example: `/qdrant/local`
- For [Qdrant client-server](https://qdrant.tech/documentation/quickstart/), the Qdrant server URL, for example: `http://localhost:6333`
- For [Qdrant Cloud](https://qdrant.tech/documentation/cloud-intro/):
- For the [Unstructured Platform](/platform/overview), only [Qdrant Cloud](https://qdrant.tech/documentation/cloud-intro/) is supported.
- For [Unstructured Ingest](/ingestion/overview), Qdrant Cloud,
[Qdrant local](https://github.com/qdrant/qdrant), and [Qdrant client-server](https://qdrant.tech/documentation/quickstart/) are supported.

- For Qdrant local, the path to the local Qdrant installation, for example: `/qdrant/local`
- For Qdrant client-server, the Qdrant server URL, for example: `http://localhost:6333`
- For Qdrant Cloud:

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