-
Notifications
You must be signed in to change notification settings - Fork 56
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
Clarification on snapshot.mode Functionality Its Interaction with ClickHouse Sink Connector #991
Comments
@subkanthi can you please help us validate our current setup and ensure optimal configuration for our CDC pipeline. |
I also use |
@aadant but I am using without using Need help with the snapshot choice for production because currently using |
@Avnish986 if you do not filter out databases or tables, it should work fine in
|
@aadant
A concise walkthrough of these steps would be greatly helpful. FYI: Using |
@aadant also when I am inserting the data the connector logs are going in loop create table query
I have to drop table the table from click house in order to exit the loop |
We are implementing a Change Data Capture (CDC) pipeline using Debezium to stream data from our source database into ClickHouse. We have configured Debezium with snapshot.mode=
schema_only
,table.include.list
property being commented and observed the following behavior:2.New Data Changes: After the connector starts, any new data changes (INSERTs, UPDATEs, DELETEs) to existing tables are captured and streamed to ClickHouse.
3.New Tables: If a new table is created in the source database after the connector has started, the schema of this new table is captured, and subsequent data changes to this table are also captured and streamed to ClickHouse.
we seek to clarify to ensure our understanding and implementation are correct.
snapshot.mode=initial
snapshot.mode=when_needed
@subkanthi We appreciate your guidance to ensure our CDC implementation aligns with best practices and operates as intended.
The text was updated successfully, but these errors were encountered: