Kafka Deployment, Basic Usage Guide and Common Troubleshooting for Ubuntu
Dedicated Service User Creation
Creating a dedicated Kafka runtime user isolates the service from your primary system account to avoid permission conflicts and environment pollusion. This step is optional but strongly recommended for production and test environments.
# Create dedicated kafka service user, you will be prompted to set a password ...
Posted on Fri, 29 May 2026 19:13:39 +0000 by bubblenut
Setting up a Three-Node Kafka+ZooKeeper Cluster on CentOS 7
Environment Setup
JDK Installation
yum install -y java-1.8.0
ZooKeeper Cluster Configuration
Downloading ZooKeeper
wget https://archive.apache.org/dist/zookeeper/zookeeper-3.7.0/apache-zookeeper-3.7.0-bin.tar.gz
tar xf apache-zookeeper-3.7.0-bin.tar.gz
Configurasion File Adjustments
# Backup sample configuration
# cp zoo_sample.cfg zoo.cfg
c ...
Posted on Fri, 22 May 2026 22:30:35 +0000 by fredriksk
Deep Dive into Kafka's Log Management Component
Architecture OverviewKafka's internal codebase is organized into distinct modules, each handling specific responsibilities. The server-side code implements the Broker's core mechanics, encompassing log persistence, controller logic, coordinator management, metadata state machines, delayed operations, consumer group oversight, and high-concurren ...
Posted on Sat, 16 May 2026 15:27:21 +0000 by DataRater
Building the Foundation for Recommendation Systems: Data Preparation and Feature Engineering
Data as the Cornerstone of Modern Recommender Engines
At the heart of every effective recommendation system lies a deep understanding of user behavior. Rather than relying on static assumptions, modern systems derive user preferences from observed interactions—clicks, views, likes, purchases, and more. These behavioral signals form the foundati ...
Posted on Sat, 16 May 2026 00:03:23 +0000 by TheMightySpud
Kafka Configuration and Consumer Group Management
Installation
Download and extract Kafka:
wget --no-check-certificate https://dlcdn.apache.org/kafka/3.0.0/kafka_2.13-3.0.0.tgz
tar -xzf kafka_2.13-3.0.0.tgz
cd kafka_2.13-3.0.0
Start Zookeeper and Kafka server:
bin/zookeeper-server-start.sh config/zookeeper.properties
bin/kafka-server-start.sh config/server.properties
By default, Zookeeper li ...
Posted on Fri, 15 May 2026 17:56:58 +0000 by soianyc
Building a Scalable Log Processing Pipeline with Filebeat, Kafka, Logstash, and Elasticsearch
Distributed log processing systems are essential for modern application monitoring and analysis. A common approach involves using Filebeat for log collection, Kafka as a message buffer, Logstash for transformation, Elasticsearch for storage, and Kibana for visualization. Grafana can also integrate with Elasticsearch for real-time monitoring das ...
Posted on Fri, 15 May 2026 04:29:59 +0000 by wgh
Deploying and Operating Kafka with the wurstmeister/kafka Docker Image
Environment Setup
Operating System: CentOS 7
Docker Version: 17.03.2-ce
Docker Compose Version: 1.23.2
Docker Compose Configuration
To deploy Kafka with Zookeeper, create a docker-compose.yml file with the following content. This configuration avoids common issues like build failures and connection errors.
version: '2'
services:
zookeeper:
...
Posted on Thu, 07 May 2026 21:17:43 +0000 by TLawrence
Core Concepts and Operational Mechanics of Apache Kafka
Message middleware enables reliable, synchronous or asynchronous communication between distributed applications using message queues and transmission protocols. It facilitates platform-agnostic data exchange and supports system integration through decoupled, scalable communication models.
Apache Kafka is a distributed event streaming platform r ...
Posted on Thu, 07 May 2026 14:14:52 +0000 by golfromeo
Hadoop Cluster Configuration and Data Pipeline Setup for Offline Data Warehouse
When configuring a Hadoop cluster for an offline data warehouse, proper host mapping and configuration file adjustments are essential.
In core-site.xml, proxy user settings should allow access from any host, group, or user:
<property>
<name>hadoop.proxyuser.atguigu.hosts</name>
<value>*</value>
</property> ...
Posted on Thu, 07 May 2026 07:42:31 +0000 by bruckerrlb