user3310115
user3310115

Reputation: 1460

Reading data after insert into table using kafka

I have a springboot application that performs an insert into a table(mysql). This in turn triggers and inserts into another table. Is it possible to read data from the table using kafka.

Upvotes: 0

Views: 1098

Answers (1)

Robin Moffatt
Robin Moffatt

Reputation: 32090

If you're interested in getting data from a database into Kafka, have a look at https://www.confluent.io/blog/no-more-silos-how-to-integrate-your-databases-with-apache-kafka-and-cdc

Disclaimer: I work for Confluent, and wrote this blog post.

Upvotes: 2

Related Questions