실시간 데이터 처리/Kafka

Kafka Topic / Message Consumer and Producer 명령어

BUST 2018. 5. 20. 21:03

Queue로 사용되는 Kafka의 기본 유틸 Shell Command에 대해서 알아보자.


생성

./bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic test


리스트 보기

./bin/kafka-topics.sh --list --zookeeper localhost:2181


메세지 생성하기

./bin/kafka-console-producer.sh --broker-list localhost:9092 --topic test


메세지 소비하기

./bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic test --from-beginning

This is a message

This is another message