首页 > 代码库 > HBase的常用Java API
HBase的常用Java API
1. 创建HBase表的对象
HBase表的对项名字叫HTable,创建它的方法有很多,常见的有如下:
org.apache.hadoop.hbase.client.HTable hTable = new HTable(org.apache.hadoop.hbase.HBaseConfiguration conf, String tableName);或org.apache.hadoop.hbase.client.HTable hTable = new HTable(org.apache.hadoop.hbase.HBaseConfiguration conf, Byte[] tableName);
1.1 其中的conf为配置对象,它的创建以及相关参数设置如下:
//创建对象HBaseConfiguration conf = HBaseConfiguration.create();///设置zookeeperconf.set("hbase.zookeeper.quorum","hadoop-task04,hadoop-task05,hadoop-task06");
注:1.它的相关册数设置是和配置文件hbase-site.xml里的设置是一致的。
2.建表还可以通过表的资源池来拿到一张表,不过这个方法已经过时了(org.apache.hadoop.hbase.client.HTablePool).
3.可以通过客户端与HBase的连接来拿到一张表的对象,代码如下(推荐):
HConnection connection = HConnectionManager.createConnection(config); HTableInterface table = connection.getTable("table1"); try { // Use the table as needed, for a single operation and a single thread } finally { table.close(); connection.close(); }
这样就可以拿到一个表的对象了。
待更新。。。
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。