forked from airbytehq/airbyte
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Destination doc and warning updates (airbytehq#20110)
* Doc updates * Bigquery Denormalized * bump faker for change * ignore missing strict-encrypt connectors from ci check * Apply suggestions from code review Co-authored-by: Augustin <[email protected]> * Fix MD titles Co-authored-by: Augustin <[email protected]>
- Loading branch information
1 parent
779f275
commit 92ad0fd
Showing
16 changed files
with
391 additions
and
323 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
# | ||
# Copyright (c) 2022 Airbyte, Inc., all rights reserved. | ||
# | ||
# | ||
|
||
|
||
import sys | ||
|
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,3 @@ | ||
# Bigquery Denormalized | ||
|
||
See [destinations/bigquery](/integrations/destinations/bigquery) |
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,9 @@ | ||
# CSV Destination | ||
|
||
The Airbyte Destination for CSV files. | ||
|
||
## Changelog | ||
|
||
| Version | Date | Pull Request | Subject | | ||
| :------ | :--------- | :------------------------------------------------------- | :----------- | | ||
| 0.2.10 | 2022-08-08 | [13932](https://github.com/airbytehq/airbyte/pull/13932) | Bump version | |
9 changes: 9 additions & 0 deletions
9
docs/integrations/destinations/destination-azure-blob-storage.md
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,9 @@ | ||
# Azure Blob Storage | ||
|
||
The Airbyte Destination for [Microsoft Azure Blob Storage](https://azure.microsoft.com/en-us/products/storage/blobs/) | ||
|
||
## Changelog | ||
|
||
| Version | Date | Pull Request | Subject | | ||
| :------ | :--------- | :------------------------------------------------------- | :----------- | | ||
| 0.1.6 | 2022-08-08 | [15412](https://github.com/airbytehq/airbyte/pull/15412) | Bump version | |
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,9 @@ | ||
# Dev Null Destination | ||
|
||
The Airbyte `dev-null` Destination. This destination is for testing and debugging only. | ||
|
||
## Changelog | ||
|
||
| Version | Date | Pull Request | Subject | | ||
| :------ | :--------- | :------------------------------------------------------- | :----------- | | ||
| 0.2.7 | 2022-08-08 | [13932](https://github.com/airbytehq/airbyte/pull/13932) | Bump version | |
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 |
---|---|---|
@@ -1,51 +1,60 @@ | ||
# Doris | ||
|
||
destination-doris is a destination implemented based on [Doris stream load](https://doris.apache.org/docs/dev/data-operate/import/import-way/stream-load-manual), supports batch rollback, and uses http/https put request | ||
destination-doris is a destination implemented based on [Apache Doris stream load](https://doris.apache.org/docs/dev/data-operate/import/import-way/stream-load-manual), supports batch rollback, and uses http/https put request | ||
|
||
## Sync overview | ||
|
||
### Output schema | ||
|
||
Each stream will be output into its own table in Doris. Each table will contain 3 columns: | ||
|
||
* `_airbyte_ab_id`: an uuid assigned by Airbyte to each event that is processed. The column type in Doris is `VARCHAR(40)`. | ||
* `_airbyte_emitted_at`: a timestamp representing when the event was pulled from the data source. The column type in Doris is `BIGINT`. | ||
* `_airbyte_data`: a json blob representing with the event data. The column type in Doris is `String`. | ||
- `_airbyte_ab_id`: an uuid assigned by Airbyte to each event that is processed. The column type in Doris is `VARCHAR(40)`. | ||
- `_airbyte_emitted_at`: a timestamp representing when the event was pulled from the data source. The column type in Doris is `BIGINT`. | ||
- `_airbyte_data`: a json blob representing with the event data. The column type in Doris is `String`. | ||
|
||
### Features | ||
|
||
This section should contain a table with the following format: | ||
|
||
| Feature | Supported?(Yes/No) | Notes | | ||
| :--- |:-------------------| :--- | | ||
| Full Refresh Sync | Yes | | | ||
| Incremental - Append Sync | Yes | | | ||
| Incremental - Deduped History | No | it will soon be realized | | ||
| For databases, WAL/Logical replication | Yes | | | ||
| Feature | Supported?(Yes/No) | Notes | | ||
| :------------------------------------- | :----------------- | :----------------------- | | ||
| Full Refresh Sync | Yes | | | ||
| Incremental - Append Sync | Yes | | | ||
| Incremental - Deduped History | No | it will soon be realized | | ||
| For databases, WAL/Logical replication | Yes | | | ||
|
||
### Performance considerations | ||
|
||
Batch writes are performed. mini records may impact performance. | ||
Batch writes are performed. mini records may impact performance. | ||
Importing multiple tables will generate multiple [Doris stream load](https://doris.apache.org/docs/dev/data-operate/import/import-way/stream-load-manual) transactions, which should be split as much as possible. | ||
|
||
## Getting started | ||
|
||
### Requirements | ||
|
||
To use the Doris destination, you'll need: | ||
* A Doris server version 0.14 or above | ||
* Make sure your Doris fe http port can be accessed by Airbyte. | ||
* Make sure your Doris database host can be accessed by Airbyte. | ||
* Make sure your Doris user with read/write permissions on certain tables. | ||
|
||
- A Doris server version 0.14 or above | ||
- Make sure your Doris fe http port can be accessed by Airbyte. | ||
- Make sure your Doris database host can be accessed by Airbyte. | ||
- Make sure your Doris user with read/write permissions on certain tables. | ||
|
||
### Target Database and tables | ||
|
||
You will need to choose a database that will be used to store synced data from Airbyte. | ||
You need to prepare tables that will be used to store synced data from Airbyte, and ensure the order and matching of the column names in the table as much as possible. | ||
|
||
### Setup the access parameters | ||
* **Host** | ||
* **HttpPort** | ||
* **QueryPort** | ||
* **Username** | ||
* **Password** | ||
* **Database** | ||
|
||
- **Host** | ||
- **HttpPort** | ||
- **QueryPort** | ||
- **Username** | ||
- **Password** | ||
- **Database** | ||
|
||
## Changelog | ||
|
||
| Version | Date | Pull Request | Subject | | ||
| :------ | :--------- | :------------------------------------------------------- | :------------- | | ||
| 0.1.0 | 2022-11-14 | [17884](https://github.com/airbytehq/airbyte/pull/17884) | Initial Commit | |
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
Oops, something went wrong.