Skip to content

Commit 4e6d747

Browse files
authored
Platform: Delta Table destination connector (#324)
1 parent bbc629e commit 4e6d747

File tree

5 files changed

+36
-0
lines changed

5 files changed

+36
-0
lines changed

mint.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -459,6 +459,7 @@
459459
"platform/destinations/overview",
460460
"platform/destinations/astradb",
461461
"platform/destinations/azure-cognitive-search",
462+
"platform/destinations/delta-table",
462463
"platform/destinations/milvus",
463464
"platform/destinations/mongodb",
464465
"platform/destinations/pinecone",

platform/connectors.mdx

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

2525
- [Astra DB](/platform/destinations/astradb)
2626
- [Azure Cognitive Search](/platform/destinations/azure-cognitive-search)
27+
- [Delta Table](/platform/destinations/delta-table)
2728
- [Milvus](/platform/destinations/milvus)
2829
- [MongoDB](/platform/destinations/mongodb)
2930
- [Pinecone](/platform/destinations/pinecone)
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
title: Delta Table
3+
---
4+
5+
Send processed data from Unstructured to a Delta Table, stored in Amazon S3.
6+
7+
You'll need:
8+
9+
import DeltaTablePrerequisites from '/snippets/general-shared-text/delta-table.mdx';
10+
11+
<DeltaTablePrerequisites />
12+
13+
To create the destination connector:
14+
15+
1. On the sidebar, click **Connectors**.
16+
2. Click **Destinations**.
17+
3. Click **Add new**.
18+
4. Give the connector some unique **Name**.
19+
5. In the **Provider** area, click **Delta Table**.
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 DeltaTableFields from '/snippets/general-shared-text/delta-table-platform.mdx';
25+
26+
<DeltaTableFields />

platform/destinations/overview.mdx

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

2020
- [Astra DB](/platform/destinations/astradb)
2121
- [Azure Cognitive Search](/platform/destinations/azure-cognitive-search)
22+
- [Delta Table](/platform/destinations/delta-table)
2223
- [Milvus](/platform/destinations/milvus)
2324
- [MongoDB](/platform/destinations/mongodb)
2425
- [Pinecone](/platform/destinations/pinecone)
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+
- **AWS Region** (_required_): The AWS Region identifier (for example, `us-east-1`) for the Amazon S3 bucket you want to store the Delta Table in.
5+
- **Bucket URI** (_required_): The URI of the Amazon S3 bucket you want to store the Delta Table in. This typically takes the format `s3://my-bucket/my-folder`.
6+
- **AWS Access Key ID** (_required_): The AWS access key ID for the AWS IAM principal (such as an IAM user) that has the appropriate access to the S3 bucket.
7+
- **AWS Secret Access Key** (_required_): The AWS secret access key for the corresponding AWS access key ID.

0 commit comments

Comments
 (0)