hanker

Hbase 기본 명령어 본문

SERVER/Linux

Hbase 기본 명령어

hanker 2020. 8. 10. 10:55
반응형

hbase 서버 접속 명령어

- hbase shell

 

hbase 서비스 중지

 - stop-hbase.sh

 - stop-all.sh

 

hbase 서비스 시작

 - start-hbase.sh

 - start-all.sh

 

hbase 클러스터 일관성 점검

 - hbase hbck

 

<hbase 서버 접속 후>

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', 'newTableName'

hbase shell> delete_snapshot 'tableSnapshot'

hbase shell> drop 'tableName'

 

참고 : https://hbase.apache.org/book.html#table.rename

반응형