Configure and Start Apache HBase
Note | |
---|---|
The |
To enable Kerberos for clusters with dual home network setting, each HBase RegionServer must have its own key. See Installing HDP Manually.
The hbase.bucketcache.percentage.in.combinedcache is removed in HDP 2.5.3. This simplifies the configuration of block cache. BucketCache configurations from HDP 2.2 need to be recalculated to attain identical memory allotments in HDP 2.5.3. The L1 LruBlockCache is whatever hfile.block.cache.size is set to and the L2 BucketCache is whatever hbase.bucketcache.size is set to.
Replace your configuration after upgrading. Replace the HBase template configuration in
/etc/hbase/conf
.Start services. From root, assuming that $HBASE_USER=hbase:
su - hbase -c "/usr/hdp/current/hbase-master/bin/hbase-daemon.sh start master; sleep 25"
su - hbase -c "/usr/hdp/current/hbase-regionserver/bin/hbase-daemon.sh start regionserver"
Check processes.
ps -ef | grep -i hmaster
ps -ef | grep -i hregion
Run HBase smoke test. Verify that following commands can be executed successfully from HBase shell.
create 'testtable', 'cf1'
put 'testtable', 'r1', 'cf1:c1', 'v1'
disable 'testtable'
drop 'testtable'