java api访问hbase_hbase访问方式之java api

本文详细介绍了HBase的多种访问方式,重点讲解了使用Java API进行HBase操作的方法,包括创建表、修改表信息、删除表、插入数据、查询数据等步骤,并给出了相关示例代码。此外,还提及了其他访问方式如HBase Shell、Thrift Gateway、REST Gateway和MapReduce。
摘要由CSDN通过智能技术生成

Hbase的访问方式

1、Native Java API:最常规和高效的访问方式;

2、HBase Shell:HBase的命令行工具,最简单的接口,适合HBase管理使用;

3、Thrift Gateway:利用Thrift序列化技术,支持C++,PHP,Python等多种语言,适合其他异构系统在线访问HBase表数据;

4、REST Gateway:支持REST 风格的Http API访问HBase,解除了语言限制;

5、MapReduce:直接使用MapReduce作业处理Hbase数据;

6、使用Pig/hive处理Hbase数据。

常用Java API的用法:

1、加载配置

Configuration config = HBaseConfiguration.create();

//可以自定义配置,也可以从自定义配置文件中读取

/*config.set("hbase.zookeeper.property.clientPort","4181");

config.set("hbase.zookeeper.quorum","hadoop.datanode5.com,hadoop.datanode2.com,hadoop.datanode3.com");

config.set("hbase.master","hadoop.datanode3.com\\:600000");*/

2、表的创建、表信息修改、表删除

HBaseAdmin admin = new HBaseAdmin(config);

//创建表

HTableDescriptor htd = new HTableDescriptor(tableName);

htd.addFamily(new HColumnDescriptor("cf1"));

htd.addFamily(new HColumnDescriptor("cf2"));

admin.createTable(htd);

//修改表信息

admin.disableTable(tableName);

// modifying existing ColumnFamily

admin.modifyColumn(tableName,new HColumnDescriptor("cf1"));

admin.enableTable(tableName);

//删除表

admin.disableTable(Bytes.toBytes(tableName));

admin.deleteTable(Bytes.toBytes(tableName));

/** 在多次使用时,建议用HTablePool

HTable table = new HTable(config,tableName);

=>

HTablePool pool = new HTablePool(config,1000);

HTableInterface table = pool.getTable(tableName);*/

HTable table = new HTable(config,tableName);

/**

* 在插入操作时,默认不适用任何缓存

* 可自定义使用缓存,以及缓存大小

* 每个任务最后需要手工调用 flushCommits();

*/

/*table.setAutoFlush(false);

table.setWriteBufferSize(1024);*/

Put put1 = new Put(Bytes.toBytes(rowKey));

if (ts == 0) {

put1.add(Bytes.toBytes(family),Bytes.toBytes(qualifier),Bytes.toBytes(value));

} else {

//自定义版本时,从自定义的版本号,类型为long

put1.add(Bytes.toBytes(family),ts,Bytes.toBytes(value));

}

table.put(put1);

//table.flushCommits();

4、查询,根据Rowkey查询

Get get1 = new Get(Bytes.toBytes(rowKey));

Result result = table.get(get1);

System.out.println("get result:" + Bytes.toString(result.getValue(Bytes.toBytes(family),Bytes.toBytes(qualifier))));

Result[] result = table.get(List);//查询指定Rowkey的多条记录

5、查询,指定条件和rowkey区间查询

Scan scan = new Scan();

//默认缓存大小为1,设置成一个合理的值,可以减少scan过程中next()的时间开销,代价是客户端的内存

scan.setCaching(500);

scan.setCacheBlocks(false);

//根据startRowKey、endRowKey查询

//Scan scan = new Scan(Bytes.toBytes("startRowKey"),Bytes.toBytes("endRowKey"));

//rowKey之外的过滤条件,在List中可以add;

/**List filters = new ArrayList();

Filter filter = new SingleColumnValueFilter("familyName".getBytes(),"qualifierName".getBytes(),CompareOp.EQUAL,Bytes.toBytes("value"));

filters.add(filter);

scan.setFilter(new FilterList(filters));*/

ResultScanner scanner = table.getScanner(scan);

System.out.println("scan result list:");

for (Result result : scanner) {

System.out.println(Bytes.toString(result.getRow()));

System.out.println(Bytes.toString(result.getValue(Bytes.toBytes("data"),Bytes.toBytes("data1"))));

System.out.println(Bytes.toString(result.getValue(Bytes.toBytes("data"),Bytes.toBytes("data2"))));

}

scanner.close();

总结

以上所述是小编给大家介绍的hbase访问方式之java api,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对编程小技巧网站的支持!

总结

如果觉得编程之家网站内容还不错,欢迎将编程之家网站推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。

如您喜欢交流学习经验,点击链接加入交流1群:1065694478(已满)交流2群:163560250

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值