Kafka Streams एक library हो stream processing को लागि — Kafka topics मा डेटा real time मा process र transform गर्ने applications बनाउन को लागि (filtering, transforming, aggregating, joining streams)। यसले Kafka मा सीधै real-time डेटा processing enable गर्छ।
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
