mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-11 01:10:31 +00:00
19 lines
509 B
Plaintext
19 lines
509 B
Plaintext
# kafka-topics
|
|
#
|
|
# Comamnd-line tool to manage Kafka topics
|
|
|
|
# list topics
|
|
kafka-topics --zookeeper localhost:2181 --list
|
|
|
|
# create a topic
|
|
kafka-topics --zookeeper localhost:2181 --create --topic logs --partitions 3 --replication-factor 2
|
|
|
|
# view topic
|
|
kafka-topics --zookeeper localhost:2181 --describe --topic logs
|
|
|
|
# update a topic
|
|
kafka-topics --zookeeper localhost:2181 --alter --topic logs --config cleanup.policy=compact
|
|
|
|
# delete a topic
|
|
kafka-topics --zookeeper localhost:2181 --delete --topic logs
|