hbase 伪 分 布 安 装参考:http://blog.csdn.net/gamer_gyt/article/details/47126961
hbase shell操作命令参考:http://blog.csdn.net/gamer_gyt/article/details/47131857
数 据 挖 掘 资源链接汇总:http://blog.csdn.net/gamer_gyt/article/details/47747857
其中用到的eclipse快捷键:
Alt+/ 代码助手完成一些代码的插入,自动显示提示信息
Alt+↓ 当前行和下面一行交互位置(特别实用,可以省去先剪切,再粘贴了)
Alt+↑ 当前行和上面一行交互位置(同上)
Alt+← 前一个编辑的页面
Alt+→ 下一个编辑的页面(当然是针对上面那条来说了)
Alt+Shift+M 抽取方法
Alt+Shift+L 抽取本地变量
Ctrl+1 快速修复
一:API介绍
几个相关类与HBase数据模型之间的对应关系
一、HBaseConfiguration
关系:org.apache.hadoop.hbase.HBaseConfiguration
作用:对HBase进行配置
用法示例:
该方法设置了"hbase.zookeeper.property.clientPort"的端口号为2181。一般情况下,HBaseConfiguration会使用构造函数进行初始化,然后在使用其他方法。
二、HBaseAdmin
关系:org.apache.hadoop.hbase.client.HBaseAdmin
作用:提供了一个接口来管理HBase数据库的表信息。它提供的方法包括:创建表,删除表,列出表项,使表有效或无效,以及添加或删除表列族成员等。
用法示例:
三、HTableDescriptor
关系:org.apache.hadoop.hbase.HTableDescriptor
作用:包含了表的名字极其对应表的列族
用法示例:
在上述例子中,通过一个HColumnDescriptor实例,为HTableDescriptor添加了一个列族:family
四、HColumnDescriptor
关系:org.apache.hadoop.hbase.HColumnDescriptor
作用:维护着关于列族的信息,例如版本号,压缩设置等。它通常在创建表或者为表添加列族的时候使用。列族被创建后不能直接修改,只能通过删除然后重新创建的方式。列族被删除的时候,列族里面的数据也会同时被删除。
用法示例:
此例添加了一个content的列族
五、HTable
关系:org.apache.hadoop.hbase.client.HTable
作用:可以用来和HBase表直接通信。此方法对于更新操作来说是非线程安全的。
用法示例:
六、Put
关系:org.apache.hadoop.hbase.client.Put
作用:用来对单个行执行添加操作
用法示例:
七、Get
关系:org.apache.hadoop.hbase.client.Get
作用:用来获取单个行的相关信息
用法示例:
八、Result
关系:org.apache.hadoop.hbase.client.Result
作用:存储Get或者Scan操作后获取表的单行值。使用此类提供的方法可以直接获取值或者各种Map结构(key-value对)
九、ResultScanner
关系:Interface
作用:客户端获取值的接口
package Hbase; import java.io.IOException; import java.io.InterruptedIOException; import java.util.List; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.hbase.HBaseConfiguration; import org.apache.hadoop.hbase.HColumnDescriptor; import org.apache.hadoop.hbase.HTableDescriptor; import org.apache.hadoop.hbase.KeyValue; import org.apache.hadoop.hbase.client.Get; import org.apache.hadoop.hbase.client.HBaseAdmin; import org.apache.hadoop.hbase.client.HTable; import org.apache.hadoop.hbase.client.Put; import org.apache.hadoop.hbase.client.Result; import org.apache.hadoop.hbase.client.ResultScanner; import org.apache.hadoop.hbase.client.RetriesExhaustedWithDetailsException; import org.apache.hadoop.hbase.client.Scan; public class test { private static final String Table_NAME = "table1"; //表名称 private static final String FAMILY_NAME = "family1"; //列族名称 private static final String ROW_KEY = "rowkey1"; //创建行健 //创建,插入,查询记录,遍历表,删除表 public static void main(String[] args) throws Exception { Configuration conf= HBaseConfiguration.create(); conf.set("hbase.rootdir","hdfs://localhost:9000/hbase"); //设置hbase再hdfs中的目录 conf.set("hbase.zookeeper.quorum", "localhost"); //使用zookeeper来进行定位 //创建删除表使用HBaseAdmin HBaseAdmin hBaseAdmin = new HBaseAdmin(conf); createTable(hBaseAdmin); //创建表 //插入记录,查询一条记录,遍历所有的记录Table final HTable hTable = new HTable(conf, Table_NAME); putRecord(hTable); //插入一条记录 getRecord(hTable); //查询一条记录 scanTable(hTable); //遍历所有的表的记录 hTable.close(); //关闭表 //deleteTable(hBaseAdmin); //删除表 } private static void scanTable(final HTable hTable) throws IOException { Scan scan = new Scan(); final ResultScanner scanner = hTable.getScanner(scan); for (Result result : scanner) { final byte[] value = result.getValue(FAMILY_NAME.getBytes() , "age".getBytes()); System.out.println(result+"\t" + new String(value)); } } private static void getRecord(final HTable hTable) throws IOException { Get get = new Get(ROW_KEY.getBytes()); final Result result = hTable.get(get ); final byte[] value = result.getValue(FAMILY_NAME.getBytes() , "age".getBytes()); System.out.println(result+"\t" + new String(value)); } private static void putRecord(HTable hTable) throws InterruptedIOException, RetriesExhaustedWithDetailsException { Put put = new Put(ROW_KEY.getBytes()); //声明对象 put.add(FAMILY_NAME .getBytes(), "age".getBytes()," 12".getBytes()); //添加记录 hTable.put(put ); //插入 } private static void deleteTable(HBaseAdmin hBaseAdmin) throws IOException { hBaseAdmin.disableTable(Table_NAME); //关闭表 hBaseAdmin.deleteTable(Table_NAME); //删除表 } private static void createTable(HBaseAdmin hBaseAdmin) throws IOException { if (!hBaseAdmin.tableExists(Table_NAME)){ HTableDescriptor tableDescriptor = new HTableDescriptor(Table_NAME); //声明一个表 HColumnDescriptor family = new HColumnDescriptor(FAMILY_NAME); //声明一个列族 tableDescriptor.addFamily(family ); //添加列族 hBaseAdmin.createTable(tableDescriptor ); //创建表 } } }