Re: Message throughput per day - Kafka

2018-02-19 Thread Sharath Gururaj
There are no statistics on a per-day basis. Kafka exposes metrics for producer throughput per sec. Both in terms of byte rate as well as number of messages. you'll have to write some sort of a cron to periodically sample it. If you want exact numbers, then write a cron job to get the current offse

Unordered messaging without partitions

2017-12-13 Thread Sharath Gururaj
Hi All, In our company, we extensively use kafka and love the scalability and durability guarantees that it offers. However, almost all use cases in the company are for unordered messages, where there are latency sensitive "online" producers pumping messages to kafka, which is then processed leis