码迷,mamicode.com
首页 > 其他好文 > 详细

通过直接预分区的方式建表

时间:2014-06-03 14:51:05      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:des   c   class   blog   code   java   

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*通过直接预分区的方式建表*/
 
private static void printTableRegion(String tableName)throws IOException{
    System.out.println("Prtint region of table:"+tableName);//打印reginon帮助信息
    HTable table=new HTable(Bytes.Bytes(tableName);
    Pair<byte[][],byte[][]> pair=table.getStartEndKeys();//打印region起始行健和终止行健列表
    for(int n;n<pair.getFirst().length;n++)
    {
        byte[] sk=pair.getFirst()[n];
        byte[] ek=pair.getSecond()[n];
        System.out.println("["+n+1)+"]"+"start key"+(sk.length=8?Bytes.toLong(sk):Bytes.toStringBinary(sk))+",endkey"+
                            (ek.length=8?Bytes.toLong(ek):Bytes.toStringBinary(ek)));
    }
}
public static void main(Sting)[] args)throws IOException,Interrupted Exception{
    Configuration conf=new HBaseConfiguration.create();
    HBaseAdmin admin=new HBaseAdmin(conf);
    HtableDescriptor desc=new HtableDescriptor(Bytes.toBytes("tabletest"));
    HColumnDescriptor coldef=new HColumnDescriptor(Bytes.toBytes("colfam1"));
    desc.addFamily(coldef);
    admin.createTable(desc,Bytes.toBytes(1L),Bytes.toBytes(100L),10);//这就是执行建表,并同时分配region的语句
    printTableRegions("tabletest");
    byte[][] regions=new byte[][]{
        Bytes.toBytes("A");
        Bytes.toBytes("D");
    }
    desc.setName(Bytes.toBytes("tabletest2"));
    admin.createTable(desc.regions);
    printTableRegion("tabletest2");
}

 首先第一个region的起始行键和最后一region的终止行键都是空字节,这是HBase默认的规则。

主要语句是createTable(HTableDescriptor desc,byte[] startKey,byte[] endKey,int numRegions)

这个方法能以特定的numRegions来拆分特定的其实行键和终止行键,同时创建表,startKey要小于endKey,这是显然的,同时要注意numRegions不能小于3,这可能也是HBase之前设定好的。

用tableExists()方法检查是否创建成果,

通过直接预分区的方式建表,布布扣,bubuko.com

通过直接预分区的方式建表

标签:des   c   class   blog   code   java   

原文地址:http://www.cnblogs.com/pg-young/p/3765309.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!