Skip to content

sohangp/embedded-debezium

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

Change Data Capture (CDC) with Embedded Debezium and SpringBoot

Blog URL: https://medium.com/@sohan_ganapathy/change-data-capture-cdc-with-embedded-debezium-and-springboot-6f10cd33d8ec

Prerequisites

Installing required tools

Once the prerequisites are installed, run the command.

docker-compose up -d

Student table

CREATE TABLE public.student
(
    id integer NOT NULL,
    address character varying(255),
    email character varying(255),
    name character varying(255),
    CONSTRAINT student_pkey PRIMARY KEY (id)
);

Starting the SpringBoot application

Go to the folder student-cdc-relay, run the command

mvn spring-boot:run

Scripts to Insert, Update and Delete a record on Postgres

INSERT INTO STUDENT(ID, NAME, ADDRESS, EMAIL) VALUES('1','Jack','Dallas, TX','jack@gmail.com');

UPDATE STUDENT SET EMAIL='jill@gmail.com', NAME='Jill' WHERE ID = 1; 

DELETE FROM STUDENT WHERE ID = 1;

Elasticsearch commands to test if CDC worked !

curl -X GET http://localhost:9200/student/student/1?pretty=true

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages