Performance testing of Kafka using JMeter & KafkaMeter

Опубликовано: 30 Октябрь 2024
на канале: Performance Testing
19,444
148

In this video, I have demonstrated how to perform load testing using JMeter and KafkaMeter, plugin for producing the message.Kafka is a hybrid of a distributed db and a msg queue.It depends on Zookeeper as its distributed messaging core Kafkameter act as producer however we do not have any plugin for consumer.

Video link for kafka installation
   • Running Apache Kafka on Windows witho...  
C:\(loc) zkServer //starting zookeeper server
C:\kafka_2.12-2.3.0(loc) .\bin\windows\kafka-server-start.bat .\config\server.properties
//Starting Kafka erver
C:\kafka_2.12-2.3.0\bin\windows(loc) kafka-topics.bat --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic test
//creating topics
C:\kafka_2.12-2.3.0\bin\windows(loc) kafka-console-producer.bat --broker-list localhost:9092 --topic test //producer
C:\kafka_2.12-2.3.0\bin\windows(loc) kafka-console-consumer.bat --bootstrap-server localhost:9092 --topic test --from-beginning //consumer