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 --bootstrap-server localhost:9094 --topic kinaction_helloword
5. kafka 컨슈머 명령
bin/kafka-console-consumer.sh --bootstrap-server localhost:9094 --topic kinaction_helloword --from-beginning
producer창에 메시지 치면 consumer창에서 노출되는 것을 볼 수 있다.
kafka 설치 ▼
https://ddoance.tistory.com/289
반응형
'개발 > kafka' 카테고리의 다른 글
[kafka] kafka, zookeeper, server 시작하기 (mac m1) (0) | 2024.12.14 |
---|