Home > Mobile >  Is there a way to capture table level edits in postgres using debezium?
Is there a way to capture table level edits in postgres using debezium?

Time:11-05

I am using postgres, kafka and debizium for capturing the changes that are happening to rows in the tables to build an ETL pipeline

Can someone please let me know how we can capture updates like adding/deleting a new column or changing the default value of a column etc?

I have tried adding/deleting columns but no events are being captured by debezium.

Thanks in advance

CodePudding user response:

Logical decoding does not (yet) support DDL statements like CREATE, ALTER and DROP, so there is no way you can get that.

  • Related