Kafka之setup
Kafka之setup
https://kafka.apache.org/quickstart
Start Kafka
|
Topic
list topic
bin/kafka-topics.sh --list --bootstrap-server localhost:9092
describe topic
bin/kafka-topics.sh --describe --topic test --bootstrap-server localhost:9092
create topic
bin/kafka-topics.sh --create --bootstrap-server localhost:9092 --replication-factor 1 --partitions 1 --topic test