Re: Kafka Streams Latency

2016-07-22 Thread Michael Noll
The SimpleBenchmark included in Apache Kafka [1] is, as Eno mentioned, quite rudimentary. It does some simple benchmark runs of Kafka's standard/native producer and consumer clients, and then some Kafka Streams specific ones. So you can compare somewhat between the native clients and Kafka Stream

Re: Kafka Streams Latency

2016-07-22 Thread Eno Thereska
Hi Adrienne, Also you might want to have a look at the SimpleBenchmark.java file included with Kafka Streams (org.apache.kafka.streams.perf. SimpleBenchmark). It does some simple measurements of consumer, producer and Kafka Streams throughput. Thanks Eno > On 22 Jul 2016, at 07:21, David Garci

Re: Kafka Streams Latency

2016-07-22 Thread David Garcia
You should probably just put reporting in your app. Dropwizard, logs…etc. You can also look at Kafka JMX consumer metrics (assuming you don’t have too many consumers). -David On 7/22/16, 9:13 AM, "Adrienne Kole" wrote: Hi, How can I measure the latency and throughput in Kafka

Kafka Streams Latency

2016-07-22 Thread Adrienne Kole
Hi, How can I measure the latency and throughput in Kafka Streams? Cheers Adrienne