Skip to content

Instantly share code, notes, and snippets.

View AndersonChoi's full-sized avatar
🇰🇷
안녕하세요

AndersonChoi AndersonChoi

🇰🇷
안녕하세요
View GitHub Profile
@AndersonChoi
AndersonChoi / kafka-cheat-sheet.md
Last active September 21, 2018 06:17 — forked from ursuad/kafka-cheat-sheet.md
Quick command reference for Apache Kafka

Kafka 2.0.0 Cheat Sheet

Kafka Topics

List existing topics

./kafka-topics --zookeeper localhost:2181 --list

Describe a topic

./kafka-topics --zookeeper localhost:2181 --describe --topic mytopic

Purge a topic

./kafka-topics --zookeeper localhost:2181 --alter --topic mytopic --config retention.ms=1000