오픈소스/kafka

kafka-topic.sh 기본 명령어

pastime 2023. 4. 13. 21:24
728x90

카프카 토픽 리스트 출력

kafka-topics --bootstrap-server localhost:9092 -- list

카프카 토픽 생성

kafka-topics --bootstrap-server localhost:9092 --topic topic_name --create --partitions 3 --replication-factor 1

카프카 토픽 제거

kafka-topics --bootstrap-server localhost:9092 --topic Topic_test --delete

카프카 토픽 정보 출력

kafka-topics --bootstrap-server localhost:9092 --topic topic_name --describe

 

728x90