Learnitweb

Managing Apache Kafka Topics Using CLI

Introduction

Apache Kafka provides a Command Line Interface (CLI) to manage and interact with topics within a Kafka cluster. While Java code can be used for complex interactions, the CLI is a quick and convenient way to perform common tasks such as listing topics, checking their status, and modifying configurations.

Kafka Topics CLI Overview

Kafka provides a script to manage topics, available for different operating systems:

  • Mac/Unix: kafka-topics.sh
  • Windows: kafka-topics.bat

This script allows users to perform various topic-related operations, including:

  • Creating a new topic
  • Listing existing topics
  • Describing a topic (providing detailed information)
  • Deleting a topic
  • Modifying an existing topic

Prerequisites

Before creating a Kafka topic, ensure that your Kafka server is running. If you are working with a Kafka cluster, you may need to start multiple Kafka servers. Open separate terminal windows or tabs for each server and start them accordingly.

Using Kafka Topics CLI

Creating a New Topic

To create a new Kafka topic, first navigate to the Kafka installation directory and locate the bin folder where CLI scripts are stored.

On Mac/Linux, use:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
cd /path/to/kafka
cd bin
cd /path/to/kafka cd bin
cd /path/to/kafka
cd bin

On Windows, navigate to the bin\windows directory:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
cd C:\path\to\kafka\bin\windows
cd C:\path\to\kafka\bin\windows
cd C:\path\to\kafka\bin\windows

Once inside the bin folder, you can create a new Kafka topic with the following command:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
kafka-topics.sh --create --topic topic-one --bootstrap-server localhost:9092,localhost:9093 --partitions 3 --replication-factor 3
kafka-topics.sh --create --topic topic-one --bootstrap-server localhost:9092,localhost:9093 --partitions 3 --replication-factor 3
kafka-topics.sh --create --topic topic-one --bootstrap-server localhost:9092,localhost:9093 --partitions 3 --replication-factor 3

For Windows:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
kafka-topics.bat --create --topic topic-one --bootstrap-server localhost:9092,localhost:9093 --partitions 3 --replication-factor 3
kafka-topics.bat --create --topic topic-one --bootstrap-server localhost:9092,localhost:9093 --partitions 3 --replication-factor 3
kafka-topics.bat --create --topic topic-one --bootstrap-server localhost:9092,localhost:9093 --partitions 3 --replication-factor 3

Explanation of Parameters:

  • --topic topic-one: Specifies the topic name. It should be unique and meaningful.
  • --partitions 3: Defines the number of partitions for parallelism and fault tolerance.
  • --replication-factor 3: Ensures data availability by storing copies across multiple brokers.
  • --bootstrap-server localhost:9092,localhost:9093: Specifies the Kafka brokers to use.

To create another topic, simply change the topic name:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
kafka-topics.sh --create --topic topic-two --bootstrap-server localhost:9092,localhost:9093 --partitions 3 --replication-factor 3
kafka-topics.sh --create --topic topic-two --bootstrap-server localhost:9092,localhost:9093 --partitions 3 --replication-factor 3
kafka-topics.sh --create --topic topic-two --bootstrap-server localhost:9092,localhost:9093 --partitions 3 --replication-factor 3

Listing All Topics

To list all available Kafka topics:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
kafka-topics.sh --list --bootstrap-server localhost:9092
kafka-topics.sh --list --bootstrap-server localhost:9092
kafka-topics.sh --list --bootstrap-server localhost:9092

For Windows:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
kafka-topics.bat --list --bootstrap-server localhost:9092
kafka-topics.bat --list --bootstrap-server localhost:9092
kafka-topics.bat --list --bootstrap-server localhost:9092

Describing a Topic

To get details of a specific topic:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
kafka-topics.sh --describe --topic topic-one --bootstrap-server localhost:9092
kafka-topics.sh --describe --topic topic-one --bootstrap-server localhost:9092
kafka-topics.sh --describe --topic topic-one --bootstrap-server localhost:9092

For Windows:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
kafka-topics.bat --describe --topic topic-one --bootstrap-server localhost:9092
kafka-topics.bat --describe --topic topic-one --bootstrap-server localhost:9092
kafka-topics.bat --describe --topic topic-one --bootstrap-server localhost:9092

Understanding the Output of describe Command:

  • Topic Name: The name of the Kafka topic.
  • Topic ID: A unique identifier assigned to the topic.
  • Partitions: The number of partitions the topic has.
  • Replication Factor: The number of copies stored across brokers.
  • Leader: The broker responsible for handling read/write operations for a partition.
  • Replicas: Copies of a partition stored on other brokers.
  • In-Sync Replicas (ISR): Replicas that are up to date with the leader and can take over if needed.
  • Segment Size: The maximum size of a log segment before a new one is created.

Deleting a Topic

Deleting a Kafka topic is a permanent action and cannot be undone unless you have a backup. Before proceeding, ensure that the delete.topic.enable property in the Kafka server configuration is set to true (it is true by default).

To delete a topic:.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
kafka-topics.sh --delete --topic topic-one --bootstrap-server localhost:9092
kafka-topics.sh --delete --topic topic-one --bootstrap-server localhost:9092
kafka-topics.sh --delete --topic topic-one --bootstrap-server localhost:9092

For Windows:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
kafka-topics.bat --delete --topic topic-one --bootstrap-server localhost:9092
kafka-topics.bat --delete --topic topic-one --bootstrap-server localhost:9092
kafka-topics.bat --delete --topic topic-one --bootstrap-server localhost:9092

To verify the deletion, list the topics again:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
kafka-topics.sh --list --bootstrap-server localhost:9092
kafka-topics.sh --list --bootstrap-server localhost:9092
kafka-topics.sh --list --bootstrap-server localhost:9092

If the topic was successfully deleted, it will not appear in the list.