관리 메뉴

피터의 개발이야기

[APM] PinPoint 설치 - 2편 - hbase 스키마 생성 본문

DevOps/Pinpoint

[APM] PinPoint 설치 - 2편 - hbase 스키마 생성

기록하는 백앤드개발자 2020. 12. 14. 08:00
반응형

hbase 스키마 생성

 

https://github.com/naver/pinpoint/releases/tag/1.8.4 의 Source Code 에서 
hbase/scripts/hbase-create.hbase 파일 사용하여 스키마 생성합니다.

 

소스코드를 다운 받습니다.

wget https://github.com/naver/pinpoint/archive/1.8.4.tar.gz

 

 

압축해제

tar zxvf 1.8.4.tar.gz

 

소스상의 scripts 폴더를  /home/pinpoint/hbase/script로 이동

cp -r /home/pinpoint/pinpoint-1.8.4/hbase/scripts /home/pinpoint/hbase/script

 

hbase 데이터 보존기간 변경

hbase-create.hbase 엔 TTL 값이 31536000 초(365일), 5184000 초(60일) 로 데이터를 유지하도록 되어있어 172800 초(2일)  로 변경.

sed 's/31536000/172800/' hbase-create.hbase > hbase-create-my.hbase
sed -i 's/5184000/172800/' hbase-create-my.hbase

 

 

 

스키마 생성 실행

/home/pinpoint/hbase/bin/hbase shell hbase-create-my.hbase

 

 

 

참조
https://yamoe.tistory.com/544
반응형
Comments