使用Java Api 对HBase进行简单操作
/** * 功能:测试Hbase基本的增删改查操作 * Created by liuhuichao on 2016/12/5. */ public class HbaseCRUDTest { public static Configuration configuration; static{ configuration= HBaseConfiguration.create(); configuration.set("hbase.zookeeper.quorum","lhc-centos"); } /** * 测试创建student表:测试已通过 * @throws IOException */ @Test public void createTable() throws IOException { HBaseAdmin admin=new HBaseAdmin(configuration); //HBaseAdmin负责管理HBase集群,添加和丢弃表 if(admin.tableExists("studentInfo")){ System.out.println("student表已经存在"); return; } HTableDescriptor descriptor=new HTableDescriptor("studentInfo"); descriptor.addFamily(new HColumnDescriptor("Name"));//创建列族,名字是Name descriptor.addFamily(new HColumnDescriptor("Address"));//创建列族,名字是Address admin.createTable(descriptor); //创建表 System.out.println("student表创建成功!!!"); } /** * 功能:想hbase中插入一行记录 --测试已通过 * @throws IOException */ @Test public void insertHbaseStudentTable() throws IOException { HTable table=new HTable(configuration, Bytes.toBytes("studentInfo")); Put put=new Put(Bytes.toBytes("1")); put.addColumn(Bytes.toBytes("Name"),Bytes.toBytes("firstName"),Bytes.toBytes("liu")); put.addColumn(Bytes.toBytes("Name"),Bytes.toBytes("secondName"),Bytes.toBytes("huichao")); put.addColumn(Bytes.toBytes("Address"),Bytes.toBytes("province"),Bytes.toBytes("hebei")); put.addColumn(Bytes.toBytes("Address"),Bytes.toBytes("city"),Bytes.toBytes("baoding")); put.addColumn(Bytes.toBytes("Address"),Bytes.toBytes("area"),Bytes.toBytes("qingyuan")); table.put(put); } /** * 功能:根据行健获取数据 * @throws IOException */ @Test public void getDataByRowKey() throws IOException { HTable table=new HTable(configuration, Bytes.toBytes("studentInfo")); Get get=new Get(Bytes.toBytes("1")); Result result=table.get(get); for(KeyValue kv :result.list()){ System.out.println("family:"+Bytes.toString(kv.getFamilyArray()));//所属列族名称 System.out.println("qualifier:"+Bytes.toString(kv.getQualifier()));//列名称 System.out.println("value:"+Bytes.toString(kv.getValue()));//存储的值 System.out.println("Timestamp:"+kv.getTimestamp());//获取时间戳 } } /** * 功能:测试全表扫描 * @throws IOException */ @Test public void selectHBaseScan() throws IOException { HTable table=new HTable(configuration, Bytes.toBytes("studentInfo")); /*遍历查询*/ Scan scan=new Scan(); ResultScanner rs=null; try { rs=table.getScanner(scan); for(Result result : rs){ for(KeyValue kv : result.list()){ System.out.println("family:"+Bytes.toString(kv.getFamilyArray()));//所属列族名称 System.out.println("qualifier:"+Bytes.toString(kv.getQualifier()));//列名称 System.out.println("value:"+Bytes.toString(kv.getValue()));//存储的值 System.out.println("Timestamp:"+kv.getTimestamp());//获取时间戳 } } }finally { rs.close(); } } /** * 更新 * @throws Exception */ @Test public void updateHBase() throws Exception{ HTable table=new HTable(configuration,Bytes.toBytes("studentInfo")); Put put=new Put(Bytes.toBytes("1")); //设置行健 put.add(Bytes.toBytes("Address"),Bytes.toBytes("city"),Bytes.toBytes("beijing"));///更新的时候找对族名和列名,再给定新的value值就可以了 table.put(put); } /** * 功能:查询nickname的多个(本示例为2个)版本值. * @throws Exception */ @Test public void selectSomeVersion() throws Exception{ HTable table=new HTable(configuration,Bytes.toBytes("studentInfo")); Get get=new Get(Bytes.toBytes("1")); get.addColumn(Bytes.toBytes("Address"),Bytes.toBytes("city")); // get.setMaxVersions(3); List<KeyValue> results=table.get(get).list(); int total=results.size(); System.out.println("Address列族中city列的各个版本值"); for(int i=0;i<total;i++){ System.out.println(Bytes.toString(results.get(i).getValue())); } } /** * 功能:删除指定的某一行 * @throws Exception */ @Test public void deleteColumn() throws Exception{ HTable table = new HTable(configuration, Bytes.toBytes("studentInfo"));//HTabel负责跟记录相关的操作如增删改查等 Delete deleteAll = new Delete(Bytes.toBytes("1")); table.delete(deleteAll); } /** * 功能:删除表 * @throws Exception */ @Test public void deleteTable() throws Exception{ HBaseAdmin admin=new HBaseAdmin(configuration); //HBaseAdmin负责管理HBase集群,添加和丢弃表 admin.disableTable("student"); admin.deleteTable("student"); } }
使用Java Api 对HBase进行简单操作的更多相关文章
- Hbase框架原理及相关的知识点理解、Hbase访问MapReduce、Hbase访问Java API、Hbase shell及Hbase性能优化总结
转自:http://blog.csdn.net/zhongwen7710/article/details/39577431 本blog的内容包含: 第一部分:Hbase框架原理理解 第二部分:Hbas ...
- 通过Java Api与HBase交互(转)
HBase提供了Java Api的访问接口,掌握这个就跟Java应用使用RDBMS时需要JDBC一样重要,本文将继续前两篇文章中blog表的示例,介绍常用的Api. import java.io.IO ...
- Java使用poi对Execl简单操作_总结
poi是Apache组织给开发者提供一套操作office(Execl,Word,PowerPoint)等Java API,开发者通过Poi API可以快速的操作office办公软件,以上3篇博文只是一 ...
- HBase总结(十二)Java API 与HBase交互实例
HBase提供了Java Api的訪问接口,掌握这个就跟Java应用使用RDBMS时须要JDBC一样重要 import java.io.IOException; import org.apache.h ...
- 通过Java Api与HBase交互
HBase提供了Java Api的访问接口,掌握这个就跟Java应用使用RDBMS时需要JDBC一样重要,本文将继续前两篇文章中blog表的示例,介绍常用的Api. import java.io.IO ...
- JAVA API访问Hbase org.apache.hadoop.hbase.client.RetriesExhaustedException: Failed after attempts=32
Java使用API访问Hbase报错: 我的hbase主节点是spark1 java代码访问hbase的时候写的是ip 结果运行程序报错 不能够识别主机名 修改主机名 修改主机hosts文 ...
- 使用JAVA API编程实现简易Habse操作
使用JAVA API编程实现下面内容: 1.创建<王者荣耀>游戏玩家信息表gamer,包含列族personalInfo(个人信息).recordInfo(战绩信息).assetsInfo( ...
- Java Api与HBase交互实例
import java.io.IOException; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.hb ...
- Java中对session的简单操作
1.jsp中操作session <% String name=(String)request.getSession().getAttribute("username"); / ...
随机推荐
- CSS3动画中的位置设定问题
水平居中的不同方法实现: position: absolute; margin: auto; left:; right:; position: absolute; left:%; -webkit-tr ...
- IntelliJ IDEA 与Eclipse Link with Editor等价功能设置
Link With Editor是Eclipse内置功能中十分小巧,但却异常实用的一个功能. 这个开关按钮 (Toggle Button) 出现在各式导航器视图 ( 例如 Resource Explo ...
- Autorelease 性能测试
__weak NSString *string_weak_ = nil; - (void)viewDidLoad { [super viewDidLoad]; // 场景 1 NSString *st ...
- 监听器中spring注入相关的问题
问题描述: 需求是要求在项目启动自动触发一个service中的线程的操作,使用监听器来实现,但是自定义监听器中spring注解service失败,通过WebApplicationContextUtil ...
- 关于SpringMVC整合freemarker报错问题
错误信息: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'FreeMa ...
- [转]Ribbon界面介绍(1)
小弟最近在学习VS2010中Ribbon界面的介绍,相比与C#的界面设计的强大,C++的界面实在太难做了,但没办法,项目需求,又不得不做,遍查网络上的资料,发现有用的基本上就是MSDN的帮助,又是全英 ...
- Luogu_4886 快递员
Luogu_4886 快递员 一道淀粉质的题目. 先考虑最简单的算法,那便是对每个点都求一边.时间复杂度O(NM) 然后如果我们把每个点的结果对应一个高度,我们会发现.最优解是在这个对应高度形成的三维 ...
- maven install web工程时出错
[WARNING] Error injecting: org.apache.maven.plugin.war.WarMojo java.lang.NoClassDefFoundError: org/a ...
- centos7 安装mysql5.7以及一些细节问题
突然发现我的新服务器上没有mysql,所以想安装一个,上次在我的window电脑上安装MySQL8.0我真的要气死了,和5.7修改密码的方式不一样,弄了很久,所以我决定还是不用安装8.0了,5.7就可 ...
- (1)linux和oracle---环境搭建
对linux和oracle一直是敬而远之,稍微有些了解.无奈由于工作需要这次要硬着头皮上了!@#!@@#$%^^ 对于重windows用户的我来说,简直是万种折磨. 算是做个记录吧,一定要坚持下去. ...