Skip to main content

Maintenance

Maintenance Strategies

Routine Operations

# List All Topics
bin/kafka-topics.sh --bootstrap-server localhost:9092 --list
# Create New Topic
bin/kafka-topics.sh --create \
--bootstrap-server localhost:9092 \
--replication-factor 3 \
--partitions 6 \
--topic new-topic