#how to handle CDC(change data capture) in spring boot
1 messages · Page 1 of 1 (latest)
<@&1004656351647117403> please have a look, thanks.
I'm using debezium for postgresql connector.
When data change, it will send event messages to Kafka.
https://debezium.io/documentation/reference/2.7/connectors/postgresql.html#postgresql-events
And then, u can consume these messages and resend to Websockets in your spring boot application.
Thanks bro
What if there is any update and I want to fetch all the data with that change event not just the changed data
What does 'fetch all the data with that change event' mean? Do you want to retrieve both the data before and after the change?