Kafka Streams అనేది stream processing కోసం ఒక లైబ్రరీ — Kafka topics లో ఉన్న డేటాను రియల్ టైమ్లో ప్రక్రియ చేసే మరియు పరిణామం చేసే అప్లికేషన్లను నిర్మించడం (ఫిల్టరింగ్, ట్రాన్స్ఫార్మింగ్, ఆగ్రిగేటింగ్, streams లను జాయిన్ చేయడం). ఇది Kafka పై నేరుగా రియల్టైమ్ డేటా ప్రాసెసింగ్ను ప్రారంభం చేస్తుంది.
Stream processing అంటే ఏమిటి
STREAM PROCESSING → process data CONTINUOUSLY as it arrives (in real time), vs batch
(processing stored data periodically):
→ consume events from topics, transform/analyze them, produce results (often to other topics)
→ real-time: react to and process events as they happen (low latency)
→ for: real-time analytics, transformations, monitoring, enrichment, aggregations
