Hello, I'm testing the Quotas in Kafka, but the results are not coherent I'm configuring the parameters "producer_byte_rate and consumer_byte_rate"
For example: I configured 10 messages with 100 kb "./bin/kafka-producer-perf-test.sh --topic first_topic --num-records 10 --record-size 99999 --throughput 500000 --producer-props client.id = client1 bootstrap.servers = localhost:9092" Limitation: and the 50 kb limitation "./bin/kafka-configs.sh --zookeeper localhost: 2181 --alter --add-config 'producer_byte_rate = 49999, consumer_byte_rate = 49999' --entity-type clients --entity-name client1" The result: 10 records sent, 1.0 records / sec (0.09 MB / sec), 1705.3 ms avg latency, 10074.0 max latency. 10 records sent, 0.959693 records / sec (0.09 MB / sec), 1705.30 ms avg latency, 10074 ms max latency, 391 ms 50th, 10074 ms 95th, 10074 ms 99th, 10074 ms 99.9th. How to send a message per second if the limit is half of each shipment? Thanks Angelo Xavier Rici