-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
994feed
commit b9acf91
Showing
2 changed files
with
40 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# StarTree | ||
|
||
In this guide, you'll learn how to use Estuary Flow to push data streams to StarTree using the Kafka data source. | ||
|
||
[StarTree](https://startree.ai/) is a real-time analytics platform built on Apache Pinot, designed for performing fast, | ||
low-latency analytics on large-scale data. | ||
|
||
## Prerequisites | ||
|
||
- An Estuary Flow account & collection | ||
- A StarTree account | ||
|
||
## Connecting Estuary Flow to StarTree | ||
|
||
1. **Create a new access token** to use for the StarTree connection. You can generate this token from the Estuary Admin | ||
Dashboard. | ||
|
||
![Export Dekaf Access Token](https://storage.googleapis.com/estuary-marketing-strapi-uploads/uploads//Group_22_95a85083d4/Group_22_95a85083d4.png) | ||
|
||
2. In the StarTree UI, navigate to the **Data Sources** section and choose **Add New Data Source**. | ||
|
||
3. Select **Kafka** as your data source type. | ||
|
||
4. Enter the following connection details: | ||
|
||
- **Bootstrap Servers**: `dekaf.estuary.dev` | ||
- **Security Protocol**: `SASL_SSL` | ||
- **SASL Mechanism**: `PLAIN` | ||
- **SASL Username**: `{}` (Use your Estuary username or any placeholder if not specified) | ||
- **SASL Password**: `Your generated Estuary Refresh Token` | ||
|
||
5. **Configure Schema Registry**: To decode Avro messages, enable schema registry settings: | ||
|
||
- **Schema Registry URL**: `https://dekaf.estuary.dev` | ||
- **Schema Registry Username**: `{}` (same as SASL Username) | ||
- **Schema Registry Password**: `The same Estuary Refresh Token as above` | ||
|
||
6. Click **Create Connection** to proceed. |