Search results
Apache Kafka® provides a suite of command-line interface (CLI) tools that can be accessed from the /bin directory after downloading and extracting the Kafka files. These tools offer a range of capabilities, including starting and stopping Kafka, managing topics, and handling partitions.
- Topic Operations
Topic Operations¶. A Kafka topic is the fundamental unit of...
- Manage Consumer Groups
Apache Kafka® provides a kafka-consumer-groups.sh tool that...
- Batch Processing for Efficiency
To avoid this, Kafka employs a standardized binary message...
- Message Delivery Guarantees
The previous topics helped you understand how producers and...
- Design Overview
Topics in this section¶. The topics in this section are an...
- Replication
In Kafka, all topics must have a replication factor...
- Kafka APIs
Use these APIs to implement your own components that consume...
- Kafka and the File System
Kafka has access to virtually unlimited disk space without...
- Topic Operations
Kafka Topics CLI, i.e., kafka-topics is used to create, delete, describe, or change a topic in Kafka. Make sure you have started Kafka beforehand. CLI Extensions. Use CLI commands with appropriate extensions for your platform, e.g., kafka-topics.bat for windows, kafka-topics.sh for Linux and Mac.
In this chapter, you find the CLI command and options that are related to Kafka topics. Create a Kafka topic $KAFKA_HOME /bin/kafka-topics.sh --zookeeper $ZK_HOSTS --create --topic...
List all topics for a specified cluster (providing Kafka REST Proxy endpoint). confluent kafka topic list --url http://localhost:8090/kafka. confluent kafka topic list --url http://localhost:8082.
Learn how to use Kafka Command Line Interface (CLI) In this section we will learn about some of the most used CLI tools in Kafka: Kafka Topics Management with kafka-topics. Kafka Producer with kafka-console-producer. Kafka Consumer with kafka-console-consumer.
Learn how to build and run data pipelines between Apache Kafka and other data systems with Kafka Connect, including configuring workers, connectors, tasks, and transformations. Kafka is a powerful tool, but navigating its command line interface can be daunting, especially for new users.
16 mar 2022 · 1. How To List All Topics in a Kafka Cluster. If you want to list the topics included in a specific broker, the following command will do the trick: $ kafka-topics \--bootstrap-server...