Shubham Goreapachekafkain14days.hashnode.dev·Dec 1, 2024Learning Kafka: Week 1 of 14-Day Journey With Shubham GoreTopics What is Kafka?: Apache Kafka is a distributed streaming platform that allows for publishing, subscribing to, storing, and processing streams of records in real-time. It's designed to handle high-throughput, fault-tolerant, and scalable data p...Discuss·1 like·42 readskafka
Patrick Gabrielkafka-zookeeper-sur-ubuntu-serveur.hashnode.dev·Sep 19, 2024Installing Kafka and Zookeeper on Ubuntu: A Simple TutorialINTRODUCTION Objectif de la documentation Présentation rapide de Kafka et Zookeeper Pré-requis Configuration minimale requise pour le serveur Dépendances nécessaires (Java, etc.) avoir minimum trois terminaux ouvert Installation de Kafka Té...Discuss·23 likes·117 readsUbuntu
Yash Sharmayashsharmadev.hashnode.dev·Sep 15, 2024Kafka: a Distributed Messaging System for Log ProcessingIntroduction: I was reading about event-driven architecture and got to know more about Kafka. What stood out to me was how Kafka significantly improves memory usage and boosts message consumption rates, compared to traditional log aggregators and mes...Discuss·21 likes·169 readskafka
Ronit Banerjeeronitbanerjee.hashnode.dev·Aug 26, 2024Message streaming with Apache Kafka on KubernetesApache Kafka is an excellent distributed messaging and stream-processing platform for real-time data processing. Its integration with container orchestration platforms like Kubernetes has become essential in the era of microservices and containerized...Discuss·73 readskafka
Parth P Shahparthpshah.hashnode.dev·Feb 11, 2024Apache Kafka Raft (KRaft): Apache Kafka and how it's finally without Zookeeper.The Basics, Apache Kafka Let's start with some context.Apache kafka is is an open-source event streaming platform that can transport huge volumes of data at very low latency. Kafka lets you: Publish and subscribe to streams of events Store streams ...Discuss·1 like·89 readsapache kafka kraft
Ronny Bräunlichblog.code-n-roll.dev·Nov 8, 2023Kafka Streams - Lessons LearnedI recently had to work with Kafka Streams for the first time and, as usual, when encountering a new technology, made some mistakes. I want to share the learnings from working the first time with Kafka Streams with you. Without getting too much into d...Discuss·50 readskafka
Thriving.devthrivingdev.hashnode.dev·Jun 20, 2023Minimizing Rebalance Downtime: Optimizing Stateless Kafka Streams Apps (x450)In this post, we’ll learn how Kafka Streams Consumers behave differently from regular Kafka Consumers, the consequences for the application, as well as steps to minimise downtimes in event processing when consumer group members change. With the defau...DiscussKafka streams
Thriving.devthrivingdev.hashnode.dev·Jun 2, 2023Introducing 'kafka-streams-cassandra-state-store'The Java library to be introduced - thriving-dev/kafka-streams-cassandra-state-store - is a Kafka Streams State Store implementation that persists data to Apache Cassandra. It's a 'drop-in' replacement for the official Kafka Streams state store solut...Discuss·39 readskafka
Hugo Alveswww.hugomalves.com·May 22, 2023Reconcile and aggregate events using Kafka streamsThis demo shows how we can use Kafka Streams to combine and process incoming events from multiple sources. Once the aggregation process is complete and the consolidated data is prepared, a new, enriched event will be emitted to notify relevant consum...Discuss·10 likes·76 readskafka
freeCodeCampforfreeCodeCampfreecodecamp.org·Jan 20, 2020How to implement Change Data Capture using Kafka StreamsBy Luca Florio Change Data Capture (CDC) involves observing the changes happening in a database and making them available in a form that can be exploited by other systems. One of the most interesting use-cases is to make them available as a stream o...DiscussApache Kafka