#apache-kafka
Read more stories on Hashnode
Articles with this tag
What is Log Compaction? Log Compaction is Kafka's intelligent way of managing data retention. Instead of simply deleting old messages, it keeps the...
What is a Consumer Group? A Consumer Group is Kafka's mechanism for organizing consumers to collectively process messages from topics. It enables...
Why Do We Need Retries? In distributed systems, network failures and server outages are inevitable. Kafka is no exception. The Producer retry...
What is Consumer Rebalance? When you run Kafka with multiple consumers, you'll need to handle Consumer Rebalance. It happens when Kafka needs to...
What is a Topic? A Topic is Kafka's fundamental building block for organizing messages. It's essentially a feed or channel where messages flow...