Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Pinpoint
- Spring
- 티스토리챌린지
- kotlin spring
- 코틀린 코루틴의 정석
- kotlin
- Kubernetes
- Linux
- mysql 튜닝
- 정보처리기사 실기 기출문제
- PETERICA
- aws
- minikube
- 정보처리기사 실기
- kotlin coroutine
- Java
- IntelliJ
- kotlin querydsl
- Elasticsearch
- CloudWatch
- 공부
- 정보처리기사실기 기출문제
- AWS EKS
- AI
- CKA 기출문제
- CKA
- APM
- 기록으로 실력을 쌓자
- 오블완
- MySQL
Archives
- Today
- Total
피터의 개발이야기
[APM] PinPoint 설치 - 2편 - hbase 스키마 생성 본문
반응형
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
반응형
'DevOps > Pinpoint' 카테고리의 다른 글
[Spring] Pinpoint 활용한 bootJar 실행 Shellscript 정리 (0) | 2021.01.08 |
---|---|
[APM] PinPoint 설치 - 4편 - Agent (0) | 2020.12.16 |
[APM] PinPoint 설치 - 3편 - Web, Collector (0) | 2020.12.15 |
[APM] PinPoint 설치 - 1편 - JAVA, hbase 설치 (0) | 2020.12.13 |
[APM] PinPoint APM (0) | 2020.12.11 |
Comments