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 를 설정 할 때 hadop 의 프로필 hdfs - site. xml 을 수정 해 야 합 니 다.
추가 할 내용 은:
dfs.datanode.max.transfer.threads
4096
증가 하지 않 으 면 문제 가 생 길 수 있 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
용감한 바로 가기 및 우분투 응용 프로그램안녕하세요 여러분, 이 기사에서는 모든 사이트에서 pwa를 생성하고 실행기 응용 프로그램으로 추가하는 방법을 설명하고 싶습니다. 일부 웹사이트는 PWA로 설치를 허용하지 않지만 유사한 애플리케이션을 원합니다. 1. ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.