* 카프카 + 주피커
https://miiingo.tistory.com/196
* 카프카(클러스터링) + 매니저 + 주피커 + 도커
https://gist.github.com/dkurzaj/2a899de8cb5ae698919f0a9bbf7685f0
* Test
netstat -an |grep '2181\|9092\|9000'
./kafka-topics.sh --zookeeper 121.252.119.196:2181 --create --topic scott --partitions 1 --replication-factor 1
./kafka-topics.sh --zookeeper 121.252.119.196:2181 --list --topic scott
./kafka-topics.sh --zookeeper 121.252.119.196:2181 --describe
./kafka-console-producer.sh --broker-list 121.252.119.196:9092 --topic scott
./kafka-console-consumer.sh --bootstrap-server 121.252.119.196:9092 --topic scott --from-beginning
* Manager
- Access Kafka Manager : http://localhost:9000/.
- Add a new cluster.
- Name it as you like (**Localtest** for example).
- IP : localhost:2181 or ${IP}:2181 ex) 13.209.87.141:2181
- Kafka version (corresponding here to the Kafka version inside the image : **wurstmeister/kafka:1.0.0**). But as I write this Gist, the latest Kafka version available in Kafka Manager is **0.11.0.0** so I select this one, but it's sufficiently compatible with the 1.0.0 version of Kafka according to this topic: https://github.com/yahoo/kafka-manager/issues/451
- Tick **Enable JMX Polling** in order to see the metrics of the topics
- Tick **Poll consumer information** to know the consumer of a topic (it may not work)
- Tick **Enable Active OffsetCache** to see the offsets
* 카프카-드루이드-슈퍼셋
https://blog.godatadriven.com/divolte-kafka-druid-superset
* 카프카 파이선
https://github.com/dpkp/kafka-python/
* Kafka Cluster 구축하고 python으로 테스트
http://hellowuniverse.com/2018/01/21/
* docker-kafka-ssl
https://github.com/orefalo/docker-kafka-ssl
* 카프카 S3 연동
https://swalloow.github.io/kafka-connect
* 드루이드
http://icednut.github.io/2018/03/05/20180305-start-druid/
* 카프카 드루이드 연동
https://cleanprogrammer.net/loading-data-from-apache-kafka-to-druid/
* 드루이드 S3 연동
http://druid.io/docs/latest/design/index.html
* 드루이드 장고
https://github.com/nalabelle/druid-django
* 아호 코라식
https://pypi.org/project/pyahocorasick/
'BigData' 카테고리의 다른 글
Mysql 운용 (0) | 2019.05.30 |
---|---|
Docker 운용 (0) | 2019.05.29 |
GitKraken 사용법 (0) | 2019.05.17 |
Apache Kafka 가이드 (0) | 2019.05.13 |
Apache Cassandra 가이드 (0) | 2019.05.13 |