You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a debezium source connector for postgres setup. I also have a debezium JDBC sink connector setup to sync data to another target postgres db. My source connector config looks like:
Any inserts or updates done on the source db are reflected on the target db. However, the delete operations don't delete data from target db. I have tried all possible values for transforms.Unwrap.delete.tombstone.handling.mode. Note that this happens when I am using event flattening (ExtractNewRecordState). The delete works fine if I don't use event flattening.
Is there anything I am doing wrong? Or is this not supported yet? Or is this a bug?
The text was updated successfully, but these errors were encountered:
I have a debezium source connector for postgres setup. I also have a debezium JDBC sink connector setup to sync data to another target postgres db. My source connector config looks like:
I am able to sync data off a postgres table to a kafka topic with avro schema registered.
My kafka sink connector looks like:
Any inserts or updates done on the source db are reflected on the target db. However, the delete operations don't delete data from target db. I have tried all possible values for
transforms.Unwrap.delete.tombstone.handling.mode
. Note that this happens when I am using event flattening (ExtractNewRecordState). The delete works fine if I don't use event flattening.Is there anything I am doing wrong? Or is this not supported yet? Or is this a bug?
The text was updated successfully, but these errors were encountered: