网站大量收购独家精品文档,联系QQ:2885784924
  1. 1、本文档共6页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
HBase实例

HBase的一个典型例子 import java.io.IOException; import org.apache.hadoop.hbase.client.HTable; import org.apache.hadoop.hbase.client.Scanner; import org.apache.hadoop.hbase.io.BatchUpdate; import org.apache.hadoop.hbase.io.Cell; import org.apache.hadoop.hbase.io.RowResult; public class MyClient { public static void main(String args[]) throws IOException { ??? // You need a configuration object to tell the client where to connect. ??? // But dont worry, the defaults are pulled from the local config file. ??? HBaseConfiguration config = new HBaseConfiguration(); ??? // This instantiates an HTable object that connects you to the myTable ??? // table. ??? HTable table = new HTable(config, myTable); ??? // To do any sort of update on a row, you use an instance of the BatchUpdate ??? // class. A BatchUpdate takes a row and optionally a timestamp which your ??? // updates will affect. ??? BatchUpdate batchUpdate = new BatchUpdate(myRow); ??? // The BatchUpdate#put method takes a Text that describes what cell you want ??? // to put a value into, and a byte array that is the value you want to ??? // store. Note that if you want to store strings, you have to getBytes() ??? // from the string for HBase to understand how to store it. (The same goes ??? // for primitives like ints and longs and user-defined classes - you must ??? // find a way to reduce it to bytes.) ??? batchUpdate.put(myColumnFamily:columnQualifier1, ????? columnQualifier1 value!.getBytes()); ??? // Deletes are batch operations in HBase as well. ??? batchUpdate.delete(myColumnFamily:cellIWantDeleted); ??? // Once youve done all the puts you want, you need to commit the results. ??? // The HTable#commit method takes the BatchUpdate instance youve been ??? // building and pushes the batch of changes you made into HBase. ??? mit(batchUpdate); ??? // Now, to retrieve the data we just wrote. The values that come back are ??? // Cell instances. A Cell is a combination of the value as a byte array and ??? // the time

文档评论(0)

ligennv1314 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档