设置hdfs和hbase副本数。hadoop2.5.2 hbase0.98.6
hdfs副本和基本读写。
core-site.xml 从/etc/hdfs1/conf下拷贝到工作空间 |
public static void main (String[] argv) throws IOException { |
hbase-site.xml 从/etc/hyperbase1/conf下拷贝 http://192.168.146.128:8180/#/dashboard 确保hyperbase1服务启动状态 |
Configuration conf = HBaseConfiguration.create();
|
在hbase shell中执行 describeInJson 'demoReplication' ,'true','/tmp/demo' vi '/tmp/demo' 在如下位置添加special.column.replication指定副本数2( hbase shell 外) { "special.column.replication" : "2", 保存/tmp/demo,更新表定义 alterUseJson 'demoReplication' ,'/tmp/demo'(hbase shell中) |
hdfs dfs -ls /hyperbase1/data/default/testReplication/ |
改前是3,改后是2 |