Kafka Quick Reference
Create A Topic Delete a Topic Add a Partition Describe a Topic Reassign partitions Checking Lag How to Set Up librdkafka with Pykafka Kafkacat Create A Topic ./kafka-topics.sh –create –zookeeper myzookeeper:2181 –replication-factor 3 –partitions 3 –topic mytopic Delete a Topic ./kafka-topics.sh –zookeeper myzookeeper:2181 –delete –topic mytopic Add a Partition ./kafka-topics.sh –zookeeper myzookeeper:2181 –alter –topic mytopic […]