https://www.apache.org/dyn/closer.cgi?path=/kafka/3.1.0/kafka_2.13-3.1.0.tgz
/Users/pankaj1.prasun/Documents/kafka/bin
./zookeeper-server-start.sh ../config/zookeeper.properties
./kafka-server-start.sh ../config/server.properties
./kafka-topics.sh --create --topic test-topic --bootstrap-server localhost:9092 --replication-factor 1 --partitions 4
./kafka-topics.sh --create --topic test-topic1 --bootstrap-server localhost:9092 --replication-factor 1 --partitions 4
./kafka-topics.sh --list --bootstrap-server localhost:9092
test-topic test-topic1
./kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic test-topic --from-beginning From Start
./kafka-console-producer.sh --broker-list localhost:9092 --topic test-topic
from Start