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
'실시간 데이터 처리 > Kafka' 카테고리의 다른 글
Kafka Producer Partition Leader / Ack, Timeout (0) | 2018.07.31 |
---|---|
Kafka Offset Monitor (0) | 2018.06.29 |
Kafka Broker의 버전에 따른 Java Client 라이브러리 호환성 (0) | 2018.06.25 |
Kafka Partition과 Offset (0) | 2018.06.11 |
Zero Copy (0) | 2017.07.04 |