Skip to content

Instantly share code, notes, and snippets.

View kjm789's full-sized avatar

Michael Koboldt kjm789

View GitHub Profile
@kjm789
kjm789 / kafka-cheat-sheet.md
Created February 27, 2019 18:21 — forked from filipefigcorreia/kafka-cheat-sheet.md
Apache Kafka Cheat Sheet

Kafka Topics

List existing topics

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

Purge a topic

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

... wait a minute ...

bin/kafka-topics.sh --zookeeper localhost:2181 --alter --topic mytopic --delete-config retention.ms

@kjm789
kjm789 / git tutorials.md
Created January 23, 2019 19:12 — forked from jaseemabid/git tutorials.md
Awesome git tutorials I am finding here and there