Jubin Justifies
Jubin Justifies

Reputation: 401

How to use Kafka Streams/Connect to keep MySQL database in Sync to HBASE?

I want to synchronize HBASE Database as per the update triggers generated by the MySQL with the help of Kafka Streams or Kafka Connect. Any suggestions on its possibility and how is it possible ?

Upvotes: 0

Views: 213

Answers (1)

Robin Moffatt
Robin Moffatt

Reputation: 32110

Stream your data out of MySQL using Kafka Connect with Debezium into Kafka, and then stream to Hbase using Kafka Connect with kafka-connect-hbase

Upvotes: 0

Related Questions