Page 3
JDK vs JRE vs JVM in 60 Seconds
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
Implementing the Outbox Pattern Using Debezium Server (Step-by-Step Demo)
PostgreSQL REPLICA IDENTITY Explained | DEFAULT vs FULL with CDC Example
Enable PostgreSQL CDC in Docker Compose with 2 Simple Configs
Install Apache Kafka v4+ using Docker Compose
From version 4 onwards, Apache Kafka uses KRaft for cluster management instead of Apache ZooKeeper. Therefore, you no longer need to bring up and run a container for Apache ZooKeeper as instructed in this tutorial. In this tutorial, I will guide you on how to… Read More
Debezium Tutorial for Beginners | 3 Ways to Implement CDC + PostgreSQL to Kafka Example
