하둡과 비슷한 mapreduce 대신 토폴로지로 처리하는 분산 처리 시스템
clojure로 만들었다고 하는데, 좀 더 자료 조사 필요.
zookeeper 까지 세팅 되었다면 어렵지 않게 연동 가능하다.(http://jdm.kr/blog/218, https://www.tutorialspoint.com/apache_storm/apache_storm_installation.htm)
# wget http://apache.mirror.cdnetworks.com/storm/apache-storm-1.1.3/apache-storm-1.1.3.tar.gz
# tar xfvz apache-storm-1.1.3.tar.gz
# cd apache-storm-1.1.3
# cd conf
# vi storm.yaml
storm.zookeeper.servers:
- "localhost"
storm.zookeeper.port: 2184
nimbus.seeds: ["localhost"]
supervisor.slots.ports:
- 6700
- 6701
- 6702
- 6703
zookeeper의 포토를 기본포트(2181)에서 바꾸었다면, storm.zookeeper.port 옵션을 추가한다.
* https://github.com/apache/storm/blob/master/conf/defaults.yaml
# ../bin/strom nimbus &
# ../bin/strom supervisor &
댓글 달기