TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Using Apache Kafka for Consumer Metrics

47 pointsby zekover 9 years ago

2 comments

mdasenover 9 years ago
Kafka is really wonderful in its simplicity. You put messages into it and one or more consumers read those messages in partition sequence. My app only does around 1M messages&#x2F;minute, but LinkedIn does 13M per second. Granted, LinkedIn&#x27;s usage is across all of their services, but Kafka&#x27;s log structure offers great performance and the replication offers durability.<p>If you&#x27;re looking to process data streams in real time, Kafka is definitely worth a look and the team at Confluent is awesome.
dwenzekover 9 years ago
It&#x27;s indeed a good idea to measure delta and lag along the workflow. It helps both to be alerted of an eventual issue and to identify the possible spots and causes : a trafic spike, a stage without enough cpu&#x2F;io resources, a late consumer among a group ...