1. kinaction_helloworld 토픽 만들기bin/kafka-topics.sh --create --bootstrap-server localhost:9094 --topic kinaction_helloword --partitions 3 --replication-factor 3 2. 토픽 확인하기 bin/kafka-topics.sh --list --bootstrap-server localhost:9094 3. 토픽 세부 정보 조회 bin/kafka-topics.sh --bootstrap-server localhost:9094 --describe --topic kinaction_helloword 4. kafka 프로듀서 콘솔 명령bin/kafka-console-producer.sh --boo..