分类目录归档:HBase

hbase Balancer


hbase Balancer


banance 主要有四个命令

banance_switch balancer balancer_enabled balance_rsgroup

banance_switch

功能: 开启或关闭自动banance,返回以前的状态
使用:
balance_switch [true|false]

balancer

功能:手动执行一次整个集群的balance,成功返回true,否则返回false

balancer_enabled

功能:查看当前balancer的状态

balance_rsgroup

功能:只有在开启rsgroup时才会有,手动balance

Read more

HBase之Snapshot


HBase之Snapshot

1.配置项中打开snapshot

<property>
<name>hbase.snapshot.enabled</name>
<value>true</value>
</property>

2.创建一个snapshot

$ ./bin/hbase shell
hbase> snapshot 'myTable', 'myTableSnapshot-122112'

3.列出snapshot

$ ./bin/hbase shell
hbase> list_snapshots

4. 删除

Read more