일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- codeium
- docker push
- 오블완
- 명령어
- macvlan
- 도커이미지
- 데이터내보내기
- JPA
- gtihub
- git pat
- 11월순위
- ANTIFRAGILE
- DBMS
- Python
- db종류
- docker
- IntelliJ
- git branch 삭제
- docker build
- pat발급
- 자바
- 컬렉션프레임워크
- spring
- 르세라핌
- JPQL
- 애널리틱스4
- analytics4
- java
- 티스토리챌린지
- Today
- Total
목록전체 글 (294)
hanker
admin.disableTable("테이블 명"); admin.deleteTable("테이블 명");
void rename(Admin admin, String oldTableName, TableName newTableName) { String snapshotName = randomName(); admin.disableTable("기존 테이블 명"); admin.snapshot("TMP 테이블 명", "기존 테이블 명"); admin.cloneSnapshot("TMP 테이블 명", "변경 할 테이블 명"); admin.deleteSnapshot("TMP 테이블 명"); admin.deleteTable("기존 테이블 명"); } - rename 기능이 없기 때문에 파일명 변경 후 복제 → 원본 데이터 명 삭제 참고 : https://hbase.apache.org/book.html#table.rename
hbase 서버 접속 명령어 - hbase shell hbase 서비스 중지 - stop-hbase.sh - stop-all.sh hbase 서비스 시작 - start-hbase.sh - start-all.sh hbase 클러스터 일관성 점검 - hbase hbck hbase 목록 hbase shell> list hbase 데이터 삭제 hbase shell> disable '데이터명' hbase shell> drop '데이터명' hbase 데이터이름 변경 hbase shell> disable 'tableName' hbase shell> snapshot 'tableName', 'tableSnapshot' hbase shell> clone_snapshot 'tableSnapshot', 'newTableNam..