Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update databend.md #21179

Merged
merged 6 commits into from
Jan 13, 2023
Merged
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
6 changes: 4 additions & 2 deletions docs/integrations/destinations/databend.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,13 @@ Each stream will be output into its own table in Databend. Each table will conta
* `_airbyte_ab_id`: a uuid assigned by Airbyte to each event that is processed. The column type in Databend is `VARCHAR`.
* `_airbyte_emitted_at`: a timestamp representing when the event was pulled from the data source. The column type in Databend is `TIMESTAMP`.
* `_airbyte_data`: a json blob representing with the event data. The column type in Databend is `VARVHAR`.
## Getting Started (Airbyte Cloud)
Coming soon...

## Getting Started
## Getting Started (Airbyte Open-Source)
You can follow the [Connecting to a Warehouse docs](https://docs.databend.com/using-databend-cloud/warehouses/connecting-a-warehouse) to get the user, password, host etc.

Or You can create such a user by running:
Or you can create such a user by running:

```
GRANT CREATE ON * TO airbyte_user;
Expand Down