728x90
Kafka 를 설치하고 동작 여부를 테스트 하려고 할때, 어떻게 해야 할지 고민을 하지말라고 kafkacat 이 있습니다.
https://github.com/edenhill/kafkacat
Ubuntu 와 Windows 에서 설치는
ubuntu 는 Apt 로~~
apt-get install kafkacat
Windows 에서는 아래의 파일로~~
https://ci.appveyor.com/project/edenhill/kafkacat/build/artifacts
이렇게 설치한 kafakcat 은 이용하면 Kafka Producer, Kafka Consumer 를 테스트 할 수 있습니다.
Kafka Producer
kafkacat -b localhost:9092 -t new_topic -G kafka -K : -P[옵션 설명]
-b : kafka bootstap 주소
-t : topic 이름
-G : group 이름
-K : Message Keys 구분자
-P : Producer 타입
Kafka Consumer
kafkacat -b localhost:9092 -t new_topic -G kafka -K : -C[옵션 설명]
-b : kafka bootstap 주소
-t : topic 이름
-G : group 이름
-K : Message Keys 구분자
-P : Consumer 타입
요렇게 쉽게~ kafkacat 을 이용해 봅시돠~~:)
'개발' 카테고리의 다른 글
Windows 에서 npm install 시 node-gyp rebuild 동작시 Error 발생으로 npm install 이 되지 않는 경우 해결 방법 (0) | 2021.07.18 |
---|---|
Prism + Node Proxy +Kafka Node 를 용한 Rest Mocking Server 구성하기 (0) | 2021.07.18 |
Spring Boot With Kafka Single Broker (0) | 2021.07.18 |
코드 작성 없이 PRISM 으로 REST API Mock Server 구성 하기 (0) | 2021.07.18 |
Flutter in JSON : Flutter 에서 JSON 사용 하기 (0) | 2021.07.18 |