Author: shreya

Kafka connect with Cassandra Source Connector

Reading Time: 2 minutes In this blog we will learn how to read data from cassandra source connector and write it to the kafka topic. Cassandra source connector is used to read the data from the tables and write it into the Kafka topic in JSON format. PREREQUISITES Installation of Apache Cassandra Installation of Kafka and Kafka connect CONFIGURING CASSANDRA CONNECTOR The connectors are configured using Kafka Connect Query Language Continue Reading

Kafka Connect Fundamentals

Reading Time: 3 minutes Kafka connect is an framework to connect kafka with external ecosystem like file systems, databases using kafka connector. The Kafka Connect cluster supports running and scaling out connectors. Kafka Connectors are ready-to-use components, which can help us to import data from external systems into Kafka topics and export data from Kafka topics into external systems.  What is Kafka Connect? Kafka connect is use to perform stream integration Continue Reading

Quick insight of Spring Reactor

Reading Time: 2 minutes In this Spring Reactor blog, we will learn how we can get started with reactive behaviour and start producing and consuming messages in the same application itself. What is Spring Reactor Reactor, as mentioned by Spring itself, is a core component of JVM non-compliant applications which, on modest hardware, makes it possible to process more than 15,000,000 events per second with a non-stop Dispatcher. As Continue Reading