Replies: 2 comments 2 replies
-
How are you producing the messages? IIRC the consumer will just consume the messages, but you are not producing them anywhere (maybe you just forgot to add the step here, not sure). Normally the |
Beta Was this translation helpful? Give feedback.
-
You are totally right @scholzj ... Running against on VMs deployed kafka
Running against Kafka running on kubernetes
All of them are using the same disk type in azure. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Describe the bug
We are currently reviewing the usage of this operator since we are currently running kafka locally installed on virtual machines.
So far the installation of the operator as well as the cluster has been very smooth. As next step we wanted to run some performance tests. When trying to do so we tried to run some consumer performance tests with
kafka-consumer-perf-test.sh
. Unfortunantely they all end up in a timeout. I am wondering what could be the reason for this bad performance and hope to find here some help.To Reproduce
Steps to reproduce the behavior:
kubectl run kafka-producer -ti --image=quay.io/strimzi/kafka:0.29.0-kafka-3.2.0 --rm=true --restart=Never -- bin/kafka-topics.sh --bootstrap-server sisr-cluster-kafka-bootstrap:9092 --create --replication-factor 3 --partitions 100 --topic rgarcia
kubectl run kafka-consumer-perf -ti --image=quay.io/strimzi/kafka:0.29.0-kafka-3.2.0 --rm=true --restart=Never -- bin/kafka-consumer-perf-test.sh --bootstrap-server sisr-cluster-kafka-bootstrap:9092 --topic rgarcia --messages 100
You will see the request running into a timeout because the cluster did not complete it in time
Expected behavior
Environment (please complete the following information):
Beta Was this translation helpful? Give feedback.
All reactions