hbase 설정 (hbase - site. xml) 및 기본 사용

5360 단어 linuxhbase
hbase 설정 (hbase - site. xml) 및 기본 사용
본 고 는 주로 참고 한다.http://www.cnblogs.com/ggjucheng/archive/2012/05/04/2483474.html
우선, hbase 설정 을 설치 하기 전에 zookeeper 가 모든 기계 에서 정확하게 작 동 할 수 있 도록 확보 해 야 합 니 다 (zookeeper 설정 은 이 글 을 참고 할 수 있 습 니 다.http://blog.csdn.net/wild46cat/article/details/53205548)。
물론 공식 문 서 를 찾 아 보 셨 으 면 좋 겠 습 니 다.http://hbase.apache.org/book.html#quickstart
아래 상품:
1. tar. gz 를 디 렉 터 리 에 압축 해제 합 니 다.
2. 설정 파일 hbase - site. xml 수정


hbase.rootdir
hdfs://host1:9000/hbase


hbase.cluster.distributed
true


hbase.master
hdfs://host1:60000



hbase.zookeeper.quorum
host1,host2,host3
Comma separated list of servers in the ZooKeeper Quorum. For example, "host1.mydomain.com,host2.mydomain.com,host3.mydomain.com". By default this is set to localhost for local and pseudo-distributed modes of operation. For a fully-distributed setup, this should be set to a full list of ZooKeeper quorum servers. If HBASE_MANAGES_ZK is set in hbase-env.sh this is the list of servers which we will start/stop ZooKeeper on. 


hbase.zookeeper.property.dataDir
/home/zookeeper
Property from ZooKeeper's config zoo.cfg. The directory where the snapshot is stored. 



3. 설정 파일 수정 hbase - env. sh 증가 JAVAHOME
export JAVA_HOME=/usr/local/jdk1.8.0_111

4. 지역 서버 수정
host2
host3

5. hbase 폴 더 를 다른 노드 로 복사 합 니 다.
scp -r hbase/ user@host1:~/

6. 우선 hadop 을 시작 해 야 합 니 다.
start-dfs.sh
start-yarn.sh
7. hbase 시작
start-hbase.sh
= = = = = = = = = = = = = = = = = =
8 테스트 1). hbase 클 라 이언 트 로그 인
./bin/hbase shell

 
2). 새 데이터 시트 를 만 들 고 3 개의 기록 을 삽입 합 니 다.
hbase(main):003:0> create 'test', 'cf' 
0 row(s) in 1.2200 seconds 
hbase(main):003:0> list 'table' 
test 
1 row(s) in 0.0550 seconds 
hbase(main):004:0> put 'test', 'row1', 'cf:a', 'value1' 
0 row(s) in 0.0560 seconds 
hbase(main):005:0> put 'test', 'row2', 'cf:b', 'value2' 
0 row(s) in 0.0370 seconds 
hbase(main):006:0> put 'test', 'row3', 'cf:c', 'value3' 
0 row(s) in 0.0450 seconds

 
3). 삽 입 된 데이터 보기
hbase(main):007:0> scan 'test' 
ROW COLUMN+CELL 
row1 column=cf:a, timestamp=1288380727188, value=value1 
row2 column=cf:b, timestamp=1288380738440, value=value2 
row3 column=cf:c, timestamp=1288380747365, value=value3 
3 row(s) in 0.0590 seconds

 
4). 단일 기록 읽 기
hbase(main):008:0> get 'test', 'row1' 
COLUMN CELL 
cf:a timestamp=1288380727188, value=value1 
1 row(s) in 0.0400 seconds

 
5). 데이터 시트 사용 중지 및 삭제
hbase(main):012:0> disable 'test' 
0 row(s) in 1.0930 seconds 
hbase(main):013:0> drop 'test' 
0 row(s) in 0.0770 seconds

 
6). 퇴장
hbase(main):014:0> exit

다음은 제 hbase 실행 효과 (웹) 입 니 다.
http://192.168.1.221:16010/
hbase 配置(hbase-site.xml)和基本使用_第1张图片
메모: hbase 를 설정 할 때 hadop 의 프로필 hdfs - site. xml 을 수정 해 야 합 니 다.
추가 할 내용 은:

  dfs.datanode.max.transfer.threads
  4096

증가 하지 않 으 면 문제 가 생 길 수 있 습 니 다.
hbase 配置(hbase-site.xml)和基本使用_第2张图片

좋은 웹페이지 즐겨찾기