bin/zookeeper-server-start.sh config/zookeeper.properties
bin/kafka-server-start.sh config/server.properties
bin/kafka-topics.sh --create --bootstrap-server localhost:9092 --replication-factor 1 --partitions 1 --topic MEU_TOPICO
bin/kafka-topics.sh --list --bootstrap-server localhost:9092
bin/kafka-console-producer.sh --broker-list localhost9092 --topic MEU_TOPICO
bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic MEU_TOPICO --from-beginning
bin/kafka-topics.sh --bootstrap-server localhost:9092 --describe
bin/kafka-topics.sh --alter --zookeeper localhost:2181 --topic MEU_TOPICO --partitions 3
bin/kafka-consumer-groups.sh --all-groups --bootstrap-server localhost:9092 --describe
No diretório raiz de instação do kafka, criar os seguintes diretórios:
mkdir data
mkdir data/zookeeper
mkdir data/kafka
vi config/server.properties
log.dirs=/caminho/completo/do/diretorio/data/kafka
vi config/zookeeper.properties
dataDir=/caminho/completo/do/diretorio/data/zookeeper