In this post we will go through the details of Apache Kafka installation on windows machine
Download Apache Kafka from the url https://kafka.apache.org/downloads
To start Apache Kafka with ZooKeeper follow the below steps
D:\kafka_2.13-3.4.0\bin\windows>zookeeper-server-start.bat ../../config/zookeeper.properties
D:\kafka_2.13-3.4.0\bin\windows>kafka-server-start.bat ../../config/server.properties
D:\kafka_2.13-3.4.0\bin\windows>kafka-topics.bat --describe --topic <topic_name> --bootstrap-server localhost:9092
In this blog using the Spring WebFlux module, we are going to leverage the functional…
Spring Cloud Function is a project within the Spring ecosystem that allows developers to build…
RabbitMQ is an open-source message broker software that implements the Advanced Message Queuing Protocol (AMQP).…
Spring Integration is a powerful extension of the Spring Framework designed to support the implementation…
The Spring Cloud Config Client is a component of the Spring Cloud framework that enables…
In Python, handling CSV (Comma Separated Values) files is easy using the built-in csv module.…