It may be a newbie question, but I'm facing a very particular situation and I would be thankful if somebody could help me. It revolves around other technologies besides Debezium, so I wouldn't mind if I can't get the answer here.
I have to do a logical replication of my Cloud SQL instance to an external database and vice-versa. More specifically, the CloudSQL and the external instance will contain some master and slave tables that must be replicated between each database. However, PostgreSQL logical and external replication are currently not supported by the GCP. Then, I found out about Debezium.
Can I use Debezium to help me with this? Can I create one service to read the decoded CDC data from Debezium/Kafka and apply the changes to the external database and vice-versa?
Is it possible to capture the changes of some specific tables (not the whole DB)?
Since there are two databases in question here, would it be overkill to use Kafka + Debezium for this?