kafka-topics --bootstrap-server localhost:9092 --create --topic test_topic_01
kafka-topics --bootstrap-server localhost:9092 --create --topic test_topic_02 --partitions 3
Broker가 하나이기 때문에 동작하지 않는다.
kafka-topics --bootstrap-server localhost:9092 --create --topic test_topic_03 --partitions 3 --replication-factor 2
kafka-topics --bootstrap-server localhost:9092 --list
kafka-topics --bootstrap-server localhost:9092 --topic {토픽 이름} --describe
kafka-topics --bootstrap-server localhost:9092 --topic {토픽 이름} --delete
kafka-console-producer --bootstrap-server localhost:9092 --topic test-topic
kafka-console-consumer --bootstrap-server localhost:9092 --topic test-topic
처음 Offset부터 읽어올거면,
--from-beginning
파라미터 추가
kafka-console-consumer --bootstrap-server localhost:9092 --topic test-topic --from-beginning
kafka-console-producer --bootstrap-server localhost:9092 --topic test-topic \
--property key.separator=: --property parse.key=true
kafka-console-consumer --bootstrap-server localhost:9092 --topic test-topic \
--property print.key=true --property print.value=true --from-beginning