http://druid.io/
홈페이지 대문에 링크되어 있는 Getting Started는 그대로 따라하면 대략 5~6개의 에러를 만난다. 대표적으로, wikipedia 셈플은 MySQL 디펜던시가 없다고 해놓구선, 실행해보면 mysql 관련 시도를 한다...
물론 config 쪽에서 MySQL 접근을 하지 않도록 하는 방법도 있겠지만, Sample 만 돌리고 말것도 아니므로...대략적인 Full Setting 을 해 보았다. 기타 기본적인 세팅과 데몬 구동이 필수 필요함에도, Getting Started 는 모든걸 skip 하고 있었다.
어찌되었든, Getting Started 가 좀 비약이 심하지만, 나머지 Document 정리는 잘 되어 있는 느낌이다. github 내 소스들도 최근에도 활발히 소스 갱신이 있었음을 확인 하였다.
[Druid Dowload & install & Setting]
- wget http://static.druid.io/artifacts/releases/druid-0.7.0-bin.tar.gz
- tar xvzf druid*.tar.gz
- Download Zookeeper & Setting
- wget http://mirror.apache-kr.org/zookeeper/zookeeper-3.3.6/zookeeper-3.3.6.tar.gz
- tar xvzf zookeeper-3.3.6.tar.gz
- cp conf/zoo_sample.cfg conf/zoo.cfg
- ./bin/zkServer.sh start
- Install MySQL & initial Setting
- sudo yum install -y mysql-server
- sudo service mysql start
- mysql -u root
CREATE DATABASE druid DEFAULT CHARACTER SET utf8;GRANT ALL ON druid.* TO 'druid'@'localhost' IDENTIFIED BY 'diurd';
- Coordinator Node settings
- 주석제거
druid.host=localhost druid.port=8081
- strart
- java -Xmx256m -Duser.timezone=UTC -Dfile.encoding=UTF-8 -classpath config/_common:config/coordinator:lib/* io.druid.cli.Main server coordinator
- Historical Node settings
- 주석제거
- druid.host=localhost druid.port=8083
- start
- java -Xmx256m -Duser.timezone=UTC -Dfile.encoding=UTF-8 -classpath config/_common:config/historical:lib/* io.druid.cli.Main server historical
- Broker Node Settings
- 주석제거
- druid.host=localhost druid.port=8082
- start
- java -Xmx256m -Duser.timezone=UTC -Dfile.encoding=UTF-8 -classpath config/_common:config/broker:lib/* io.druid.cli.Main server broker
- Realtime Node Settings
- 주석제거
- druid.host=localhost druid.port=8084
- start
- java -Xmx512m -Duser.timezone=UTC -Dfile.encoding=UTF-8 -Ddruid.realtime.specFile=examples/wikipedia/wikipedia_realtime.spec -classpath config/_common:config/realtime:lib/* io.druid.cli.Main server realtime
- realtime 으로 데이타를 가져오는 것까지 준비가 되어 있다. example 로 우선 구동 태스트를 해 보았으며, 결과를 빠르게 확인해보기 위해서는 위 .spec 파일을 열어 수집 갱신 주기를 바꾸어 주면 가능하다.
위 처럼 Coordinator ip:port 를 브라우저에서 치면, web ui 를 볼 수 있다.
아래처럼 저장해둔 example query 를 콘솔에서 restful url 로 수행해 보자 결과가 json 으로 떨어진다. 즉, WebService 를 위한 별도의 WAS 나 Gateway Ajax 용 호스팅 Web Page 를 만들지 않아도 된다.
일단, 오늘은 싱글노드 설치 & 쿼리 결과 보는 것 까지...!!!!
댓글 없음:
댓글 쓰기