linux 下通过过 hbase 的Java api 操作hbase
hbase版本:0.98.5
hadoop版本:1.2.1
使用自带的zk
本文的内容是在集群中创建java项目调用api来操作hbase,主要涉及对hbase的创建表格,删除表格,插入数据,删除数据,查询一条数据,查询所有数据等操作。
具体流程如下:
1.创建项目
2.获取jar包到项目的lib目录下(这边试用的事hbase 0.98 lib目录下的所有jar包)
3.编写java程序
4.编写ant脚本
package test2;
import java.util.ArrayList;
import java.util.List; import org.apache.hadoop.fs.Path;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hbase.Cell;
import org.apache.hadoop.hbase.CellUtil;
import org.apache.hadoop.hbase.HBaseConfiguration;
import org.apache.hadoop.hbase.HColumnDescriptor;
import org.apache.hadoop.hbase.HTableDescriptor;
import org.apache.hadoop.hbase.TableName;
import org.apache.hadoop.hbase.client.Delete;
import org.apache.hadoop.hbase.client.Get;
import org.apache.hadoop.hbase.client.HBaseAdmin;
import org.apache.hadoop.hbase.client.HConnection;
import org.apache.hadoop.hbase.client.HConnectionManager;
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.Scan; public class TestHBase { private HBaseAdmin admin = null;
private Configuration conf = null; public TestHBase() throws Exception
{
conf = HBaseConfiguration.create();
conf.addResource(new Path("/home/work/hbase_dev/test2/lib/hbase-site.xml"));
//conf.set("hbase.zookeeper.quorum", "10.57.90.19");
//conf.set("hbase.zookeeper.property.clientPort", "2181");
admin = new HBaseAdmin(conf);
} public void createTable (String tableName , String[] columnFamily) throws Exception
{
if (admin.tableExists(tableName))
{
System.out.println(tableName + "已存在");
return ;
//System.exit(0);
} HTableDescriptor tableDescriptor = new HTableDescriptor(TableName.valueOf(tableName)); for (String colunm : columnFamily)
{
tableDescriptor.addFamily(new HColumnDescriptor(colunm));
} admin.createTable(tableDescriptor);
System.out.println("Create table successfully..");
} public boolean deleteTable (String tableName)
{
try {
if(admin.tableExists(tableName))
{
admin.disableTable(tableName);
admin.deleteTable(tableName);
System.out.println("drop table " + tableName);
}
return true;
} catch (Exception e) {
System.out.println("删除" + tableName + "失败");
return false;
}
} public List getAllTables()
{
List<String> tables = null;
if (admin != null)
{
try{
HTableDescriptor[] allTables = admin.listTables();
if(allTables.length > 0)
{
tables = new ArrayList<String>();
} for (HTableDescriptor tableDesc : allTables)
{
tables.add(tableDesc.getNameAsString());
System.out.println(tableDesc.getNameAsString());
}
}catch(Exception ex)
{
ex.printStackTrace();
}
} return tables;
} public boolean addOneRecord (String tableName , String key , String family , String column
, byte[] dataIn) throws Exception
{
HConnection connection = HConnectionManager.createConnection(conf);
//HTable table = new HTable(hbaseConf, tableName);
HTable table = (HTable)connection.getTable(tableName);
Put put = new Put(key.getBytes());
put.add(family.getBytes(), column.getBytes(), dataIn);
try {
table.put(put);
System.out.println("插入数据条 " + key + "成功");
return true;
} catch (Exception e) {
// TODO: handle exception
System.out.println("插入数据条 " + key + "失败");
return false;
}
} public void getValueFromKey (String tableName , String key)
{
try{
HConnection conn = HConnectionManager.createConnection(conf);
HTable table = (HTable) conn.getTable(tableName);
Get get = new Get(key.getBytes());
Result rs = table.get(get);
if (rs.rawCells().length == 0)
{
System.out.println("不存在关键字为" + key + "的行...");
}
else
{
for (Cell cell : rs.rawCells())
{
System.out.println(new String(CellUtil.cloneFamily(cell)) +
" " + new String(CellUtil.cloneQualifier(cell)) + " " + new String(CellUtil.cloneValue(cell)));
}
}
}
catch(Exception ex)
{
System.out.println("查询失败");
ex.printStackTrace();
}
} public void getAllData(String tableName) throws Exception
{
HConnection conn = HConnectionManager.createConnection(conf);
HTable table = (HTable) conn.getTable(tableName);
Scan scan = new Scan();
ResultScanner rs = table.getScanner(scan);
for (Result result : rs)
{
for (Cell cell : result.rawCells())
{
System.out.println("RowName: " + new String(CellUtil.cloneRow(cell)) + " ");
System.out.println("Timetamp: " + cell.getTimestamp() + " ");
System.out.println("Column family: " + new String(CellUtil.cloneFamily(cell)) + " ");
System.out.println("row name: " + new String(CellUtil.cloneQualifier(cell)) + " ");
System.out.println("value: " + new String(CellUtil.cloneValue(cell)) + " ");
}
}
} public void deleteRecord(String tableName , String key)
{
try
{
HConnection conn = HConnectionManager.createConnection(conf);
HTable table = (HTable)conn.getTable(tableName);
Delete delete = new Delete(key.getBytes()); table.delete(delete);
System.out.println("删除" + key +"成功...");
}
catch(Exception ex)
{
System.out.println("删除数据失败...");
ex.printStackTrace();
}
} public static void main(String[] args) throws Exception{
// TODO Auto-generated method stub
String[] column = {"family1" , "family2"};
try {
TestHBase hbase = new TestHBase();
hbase.deleteTable("students");
hbase.createTable("students", column);
//hbase.getAllData("scores");
hbase.addOneRecord("students", "id1", "family1", "name", "Jack".getBytes());
hbase.addOneRecord("students", "id1", "family1", "grade", "gaosan".getBytes());
//hbase.getAllTables();
//hbase.getAllData("students");
hbase.getValueFromKey("students", "id1");
hbase.deleteRecord("students", "id1");
hbase.addOneRecord("students", "id2", "family1", "name", "Holen".getBytes());
hbase.getValueFromKey("students", "id2");
} catch (Exception e) {
// TODO: handle exception
e.printStackTrace();
} } }
ant脚本
<?xml version="1.0"?>
<project name="HBaseProject" default="run" basedir=".">
<property name="src.dir" value="src" />
<property name="report.dir" value="report" />
<property name="classes.dir" value="classes" />
<property name="lib.dir" value="lib" />
<property name="dist.dir" value="dist" />
<property name="doc.dir" value="doc"/>
<path id="master-classpath">
<fileset file="${lib.dir}/*.jar" />
<pathelement path="${classes.dir}"/>
</path> <path id="run.path">
<path path="${classes.dir}"/>
<path refid="master-classpath" />
</path>
<target name="init" depends="clean">
<mkdir dir="${classes.dir}"/>
<mkdir dir="${dist.dir}"/>
</target>
<target name="compile" depends="init" description="compile the source files"> <javac srcdir="${src.dir}" destdir="${classes.dir}" target="1.6" includeantruntime="false">
<classpath refid="master-classpath"/>
</javac>
</target> <target name="run" depends="compile">
<java classname="test2.TestHBase" classpathref="run.path" fork="true" >
</java>
</target> <target name="pack" depends="compile" description="make .jar file">
<mkdir dir="${dist.dir}" />
<jar destfile="${dist.dir}/hbaseproject.jar" basedir="${classes.dir}">
<exclude name="**/*Test.*" />
<exclude name="**/Test*.*" />
</jar>
</target> <target name="clean" description="clean the project">
<delete dir="${classes.dir}"></delete>
<delete dir="${dist.dir}"></delete>
</target>
</project>
最后把项目放在集群中,进入项目的根目录,执行命令:ant run
即可运行!
linux 下通过过 hbase 的Java api 操作hbase的更多相关文章
- HBase 6、用Phoenix Java api操作HBase
开发环境准备:eclipse3.5.jdk1.7.window8.hadoop2.2.0.hbase0.98.0.2.phoenix4.3.0 1.从集群拷贝以下文件:core-site.xml.hb ...
- Hbase框架原理及相关的知识点理解、Hbase访问MapReduce、Hbase访问Java API、Hbase shell及Hbase性能优化总结
转自:http://blog.csdn.net/zhongwen7710/article/details/39577431 本blog的内容包含: 第一部分:Hbase框架原理理解 第二部分:Hbas ...
- Java API 操作HBase Shell
HBase Shell API 操作 创建工程 本实验的环境实在ubuntu18.04下完成,首先在改虚拟机中安装开发工具eclipse. 然后创建Java项目名字叫hbase-test 配置运行环境 ...
- HBase的Java Api连接失败的问题及解决方法
分布式方式部署的HBase,启动正常,Shell操作正常,使用HBase的Java Api操作时总是连接失败,信息如下: This server is in the failed servers li ...
- hadoop2-HBase的Java API操作
Hbase提供了丰富的Java API,以及线程池操作,下面我用线程池来展示一下使用Java API操作Hbase. 项目结构如下: 我使用的Hbase的版本是 hbase-0.98.9-hadoop ...
- 5 hbase-shell + hbase的java api
本博文的主要内容有 .HBase的单机模式(1节点)安装 .HBase的单机模式(1节点)的启动 .HBase的伪分布模式(1节点)安装 .HBase的伪分布模式(1节点)的启动 .HBase ...
- hbase-shell + hbase的java api
本博文的主要内容有 .HBase的单机模式(1节点)安装 .HBase的单机模式(1节点)的启动 .HBase的伪分布模式(1节点)安装 .HBase的伪分布模式(1节点)的启动 .HBas ...
- Linux 下报错:A Java RunTime Environment (JRE) or Java Development Kit (JDK) must解决方案
一.报错环境:在Linux mint下,前几天还用得很好的的eclipse,今天开机不知为什么这样. Linux 下报错:A Java RunTime Environment (JRE) or Jav ...
- MongoDB Java API操作很全的整理
MongoDB 是一个基于分布式文件存储的数据库.由 C++ 语言编写,一般生产上建议以共享分片的形式来部署. 但是MongoDB官方也提供了其它语言的客户端操作API.如下图所示: 提供了C.C++ ...
随机推荐
- First Android application
In eclipse ADT : 1.创建一个新工程 File -> New -> Android Application Project 2.三个主要的文件 /src/MainActiv ...
- WPF中使用TextBlock的Inlines属性来完成复杂的文字内容
参考:http://blog.csdn.net/zhangjiyehandsom/article/details/5498845 1. 需求:要在一行内容中显示不同颜色以及粗细不一的字体, 解决办法: ...
- 每天一道leetcode203-移除链表的元素
考试结束,班级平均分只拿到了年级第二,班主任于是问道:大家都知道世界第一高峰珠穆朗玛峰,有人知道世界第二高峰是什么吗?正当班主任要继续发话,只听到角落默默想起来一个声音:”乔戈里峰” 前言 2018. ...
- Delphi 通得进程ID获取主窗口句柄
只知道进程ID,获取主窗口句柄的方法如下: 通过EnumWindows枚举所有窗口 使用GetWindowThreadProcessID,通过窗口句柄获取进程ID 比便获取的进程ID与当前已知的进程I ...
- Spring----有关bean的配置
1.单例类的配置如果我们想创建一个单例类的bean,只能会通过静态工厂来创建.下图为一个单例类: Stage并没有提供公开的构造方法,构造方法都是私有的,必须通过getInstance()方法获得已经 ...
- 设置tomcat字符编码
Tomcat的默认编码是ISO-8859-1,如果有是get请求时,会出现乱码,这种情况可以修改Tomcat的编码解决,当然也可以写个过滤器来解决. 在tomcat的conf目录下,编辑server. ...
- C# 随机数类
using System; namespace DotNet.Utilities { /// <summary> /// BaseRandom /// 产生随机数 /// /// 随机数管 ...
- Spring与SpringMVC的关系
在此鉴于你已经了解过Spring的相关知识,简单描述一下Spring与Spring的关系 在框架的使用中,Spring类似于一个具有多种特性,也可以说是多种功能模块的应用平台,(特性就比如IoC,AO ...
- 十四、curator recipes之DistributedAtomicLong
简介 和Java的AtomicLong没有太大的不同DistributedAtomicLong旨在分布式场景中维护一个Long类型的数据,你可以像普通单机环境一样来使用它. 官方文档:http://c ...
- 文件上传(Servlet/Struts2/SpringMVC)
文件下载(Servlet/Struts2)的链接:http://www.cnblogs.com/ghq120/p/8328093.html 文件上传 Servlet实现 要实现文件上传的功能,必须在f ...