Batch vs streaming
Batch processes chunks on a schedule, while streaming processes events continuously with low latency.
- Batch is simpler
- Streaming lowers freshness delay
- Trade latency for complexity
Batch vs streaming
Tagged with streaming
Batch processes chunks on a schedule, while streaming processes events continuously with low latency.
Batch vs streaming
Kafka is a distributed log used for durable event streaming and decoupled producers and consumers.
Kafka basics
Late arriving data shows up after the expected processing window and can break simple incremental assumptions.
What is late arriving data?