News
Outbox Pattern with Debezium – Part 1
When working with microservices, data exchange between services is always essential. This data exchange can be synchronous or asynchronous and must ensure data consistency. With synchronous calls, we can use RESTful Web Services, gRPC, or some other synchronous API to allow these services to exchange… Read More
Outbox Pattern with Debezium – Part 2
To illustrate the implementation of the Outbox Pattern with Debezium, let’s consider a system with two services: student-service and other-service: The student service will expose an API to add new student information to the database. This newly added student information needs to be communicated to… Read More