Debezium
Change Data Capture with Debezium
Debezium is an open-source distributed platform used to capture all changes related to the database. Any changes related to inserting, updating, deleting data in the database table, Debezium will capture and you can use this information to do whatever you want. In this tutorial, I… Read More
Configure data change capture using Debezium for PostgreSQL database
Write-ahead log is a feature of PostgreSQL database used to log all changes to the database before these changes are applied. Write-ahead log will use a file to record changes to the database in a certain order. Thanks to that, in case of an accident… Read More
