https://store-images.s-microsoft.com/image/apps.55093.8d6e82b2-0ff0-4ae2-b328-6d4592ed01c4.5ea97e44-7f5b-471a-a965-c0a2bb4794a4.ed7ddd66-d272-4035-9adc-1b9ee98659b8

ApacheKafka

by ATH Infosystems

Version 4.1.1+ Free Support on Ubuntu 24.04

Apache Kafka is a powerful, open-source distributed event-streaming platform designed to handle high-throughput, real-time data feeds. It is widely used for building scalable data pipelines, real-time analytics applications, and reliable messaging systems across distributed environments.

Features of Apache Kafka:
  • High-throughput and low-latency event streaming.
  • Distributed and fault-tolerant architecture.
  • Scalable design capable of handling millions of messages per second.
  • Durable message storage with configurable retention policies.
  • Support for real-time data processing and stream integration.
  • Strong ecosystem with connectors, streams API, and client libraries.

Apache Kafka Usage:

$ sudo su
$ sudo apt update
$ cd /opt/kafka
$ bin/kafka-server-start.sh

# Generate KRaft Cluster ID
$ bin/kafka-storage.sh random-uuid

# Format Kafka Storage
$ bin/kafka-storage.sh format \
  --cluster-id ADD_YOUR_KRAFT_CLUSTER_ID \
  --config config/kraft-single.properties

# Start Kafka Broker
$ bin/kafka-server-start.sh -daemon config/kraft-single.properties
$ ss -lntp | grep 9092

# Stop Kafka 
$ bin/kafka-server-stop.sh
$ sleep 5


After this we see Successful start confirmation

$ Use Kafka CLI tools to create topics, producers, and consumers
  

Disclaimer: Apache Kafka is provided "as is," without any warranty, express or implied. Users utilize this software at their own risk. Apache Kafka is an open-source project governed by the Apache Software Foundation and is not affiliated with, endorsed by, or sponsored by any commercial entity. The developers and contributors of Apache Kafka are not responsible for any damages, losses, or consequences resulting from the use of this software. Users should review licensing terms and ensure compliance with applicable regulations when using Apache Kafka.