1. 카프카 다운로드 사이트에서 설치
https://kafka.apache.org/downloads
2. 적절한 위치에서 압축 파일 해제
C:\code_folder>tar xvf kafka_2.13-2.7.0.tgz
3.
4.
주키퍼 기동 – bin\windows\zookeeper-server-start.bat config\zookeeper.properties
카프카 기동 – bin\windows\kafka-server-start.bat config\server.properties
Topic 생성
bin\windows\kafka-topics.bat --bootstrap-server localhost:9092 --create --topic quickstart-events --partitions 1
Topic 정보 확인
bin\windows\kafka-topics.bat --bootstrap-server localhost:9092 --describe --topic quickstart-events
Topic 목록 확인
bin\windows\kafka-topics.bat --bootstrap-server localhost:9092 --list
카프카 프로듀서 생성 : bin\windows\kafka-console-producer.bat --broker-list localhost:9092 --topic quickstart-events
카프카 컨슈머 생성 : bin\windows\kafka-console-consumer.bat --bootstrap-server localhost:9092 --topic quickstart-events --from-beginning
(카프카 토픽 사용, --bootstrap-server 명령으로 카프카 서버가 어디에 있는지 위치 지정, localhost:9092, --create –topic ##### 으로 토픽 이름 생성,
카프카 커넥트 명령
C:\code_folder\confluent-6.1.0>bin\windows\connect-distributed.bat etc\kafka\connect-distributed.properties
'MSA > MSA관련기술' 카테고리의 다른 글
CircuitBreaker(서킷 브레이커)와 Resilience4J (0) | 2022.12.06 |
---|---|
kafka 데이터 동기화 방법, connect (0) | 2022.12.04 |
Redis 환경설정 방법 (0) | 2022.11.29 |
서버 성능 측정 방법 (0) | 2022.11.29 |
도커 및 도커 컴포즈 정리 (1) | 2022.11.10 |
댓글