docs/integrations/destinations/selectdb.md
destination-selectdb is a destination implemented based on SelectDB copy into , supports batch rollback, and uses http/https put request
Each stream will be output into its own table in SelectDB. 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 SelectDB is String.This section should contain a table with the following format:
| Feature | Supported?(Yes/No) | Notes |
|---|---|---|
| Full Refresh Sync | Yes | |
| Incremental - Append Sync | Yes | |
| Incremental - Append + Deduped | No | |
| For databases, WAL/Logical replication | Yes |
Batch writes are performed. mini records may impact performance. Importing multiple tables will generate multiple transactions, which should be split as much as possible.
To use the SelectDB destination, you'll need:
You will need to choose a database that will be used to store synced data from Airbyte. You need to prepare database 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.
| Version | Date | Pull Request | Subject |
|---|---|---|---|
| 0.1.0 | 2023-04-03 | #20881 | Initial release SelectDB Destination |