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

Updated description of Clickhouse source connector #3556

Merged
merged 3 commits into from
May 24, 2021
Merged
Changes from 1 commit
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
Next Next commit
Updated description of Clickhouse source connector
The first sentence of the overview seemed to indicate it only supported Full Refresh, while it supports both full refresh and incremental
  • Loading branch information
johnlafleur authored May 23, 2021
commit 16a2c10cd301030a26700643a7f4a68588404b41
2 changes: 1 addition & 1 deletion docs/integrations/sources/clickhouse.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Overview

The ClickHouse source supports Full Refresh syncs. That is, every time a sync is run, Airbyte will copy all rows in the tables and columns you set up for replication into the destination in a new table.
The ClickHouse source supports both Full Refresh and Incremental syncs. So, every time a sync is run, depending on the option you select, Airbyte will either copy all rows in the tables and columns you set up for replication into the destination in a new table, or replicate the delta between the two syncs. .

This Clickhouse source connector is built on top of the source-jdbc code base and is configured to rely on JDBC v0.3.1 standard drivers provided by ClickHouse [here](https://github.com/ClickHouse/clickhouse-jdbc) as described in ClickHouse documentation [here](https://clickhouse.tech/docs/en/interfaces/jdbc/).

Expand Down