Last active
June 8, 2017 16:10
-
-
Save arttuladhar/5115e786c206fc61885ae3993750a807 to your computer and use it in GitHub Desktop.
Kafka CheatSheet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Listing Topics | |
./kafka-topics --list --zookeeper localhost:2181 | |
## Create Topic | |
./kafka-topics --create --topic pin-promotions-data-local --zookeeper localhost:2181 --partitions 1 --replication-factor 1 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment