springboot 카프카 적용시 아래와 같은 에러를 만났다.
o.apache.kafka.clients.NetworkClient-1145 - [Consumer clientId=consumer-comnKeywordGroup-1, groupId=comnKeywordGroup] Error while fetching metadata with correlation id 157 : {comnKeyword-updates=LEADER_NOT_AVAILABLE}
해당 에러는 카프카에 토픽이 등록 안된 상태이므로 토픽을 등록해주고 재시작 하면 된다.
[Consumer clientId=consumer-comnKeywordGroup-1, groupId=comnKeywordGroup] Error while fetching metadata with correlation id 157 : {comnKeyword-updates=LEADER_NOT_AVAILABLE}
먼저 토픽이 존재하는지 확인
bin/kafka-topics.sh --list --bootstrap-server localhost:9092
존재하지 않으면 토픽 생성
bin/kafka-topics.sh --create --topic comnKeyword-updates --bootstrap-server localhost:9092 --replication-factor 1 --partitions 1
'개발관련 이것저것' 카테고리의 다른 글
인텔리제이 Git clone (0) | 2024.11.22 |
---|---|
Springboot + Redis + Kafka 설치부터 설정, 실행 과정 (2) | 2024.10.16 |
고수준 & 저수준 (0) | 2024.05.24 |
SOLID (0) | 2024.05.23 |
VO & DTO (0) | 2024.05.23 |