Introduction to Apache Kafka: A Distributed Event Streaming Platform In today’s fast-paced digital world, businesses generate vast amounts of data that need to be processed, stored, and analyzed in real time. Apache Kafka has emerged as a powerful so...
What is Apache Kafka? Apache Kafka is an open-source distributed event streaming platform designed for high-throughput, fault-tolerant, and real-time data processing. Originally developed by LinkedIn, Kafka is now a top-level Apache project used by m...
Week 2: Mastering Kafka In this post, I’ll take you through the advanced concepts I explored in my Kafka journey, building upon the fundamentals from Week 1. From stream processing to secure messaging, here’s how I tackled Kafka’s more intricate feat...
Topics 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...
new to kafka ? click here - Why Kafka? Steps to follow Setup the Kafka Config We need Producer to produce events We need Consumer to consume events in a specific topic Setup Kafka: install kafkajs use npm i kafkajs or bun add kafkajs run zook...
INTRODUCTION 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é...
Welcome to the mesmerizing universe of Kafka, the backbone of real-time data streaming! Today, we embark on a step-by-step journey, delving into Kafka's core, setting it up, writing code, optimizing performance, and connecting it with the broader tec...
blog best suited for Ubuntu 22.04. For different Linux distributions, some commands may vary. Users need to check commands for other Linux distributions. Kafka & Zookeeper Installation Steps :- In this blog, We are setting up 3 node clusters on Ubunt...
If you're working with databases, you've probably heard of Kafka, Kafka Connect, and connectors. In a nutshell, Kafka is a distributed streaming platform that allows you to publish and subscribe to streams of records, while Kafka Connect is a framewo...
In a recent project at work, we needed to monitor changes to data stored in multiple databases and services in real-time. To achieve this goal, we opted for Kafka as our distributed streaming platform. We chose Confluent Cloud, the hosted service pro...