Apache HBase 기본 명령어와 Java API 활용
HBase Shell 명령어
DDL 작업: 테이블 관리
네임스페이스 생성 및 테이블 조회:
create_namespace 'example_ns'
list_namespace
테이블 생성 및 구조 확인:
create 'example_ns:sample_table', 'cf1', 'cf2'
describe 'example_ns:sample_table'
테이블 수정 및 컬럼 패밀리 삭제:
alter 'example_ns:sample_table', {NAME => 'cf1', VERSIONS => 3}
alter 'example_ns:s ...
6월 10일 17:40에 게시됨