Kafka 명령어 정리



카프카에서는 sh 나 bat 파일들을 제공하며 kafka 명령어를 사용할 수 있도록 하고 있다.


1. 토픽 생성

/bin/kafka-topics --create \
--topic test-topic \
--bootstrap-server 도메인:포트 \
--replication-factor 2 \
--partitions 3



2. 토픽 조회

/bin/kafka-topics --list \
--bootstrap-server 도메인:포트



3. 토픽 삭제

/bin/kafka-topics --delete \
--topic test-topic \
--bootstrap-server 도메인:포트