HBase(0.96)新的Java API操作
package test;
import java.io.IOException;
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.Put;
import org.apache.hadoop.hbase.client.Result;
import org.apache.hadoop.hbase.client.ResultScanner;
import org.apache.hadoop.hbase.client.Scan;
import org.apache.hadoop.hbase.util.Bytes;
import org.apache.hadoop.hbase.client.HConnection;
import org.apache.hadoop.hbase.client.HConnectionManager;
import org.apache.hadoop.hbase.client.HTableInterface;
public class HBaseCommons {
//声明静态配置
static Configuration conf=null;
static HConnection conn=null;
static{
conf=HBaseConfiguration.create();
// conf.set("hbase.zookeeper.quorum","Master.Hadoop");
try {
conn=HConnectionManager.createConnection(conf);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
/*
* 创建表
*
* @tableName 表名
*
* @family 列簇列表
*/
public static void createTable(String tableName,String[] family)
throws Exception{
HBaseAdmin admin=new HBaseAdmin(conf);
HTableDescriptor desc=new HTableDescriptor(TableName.valueOf(tableName));//新的语法
for(int i=0;i<family.length;i++)
{
desc.addFamily(new HColumnDescriptor(family[i]));
}
if(admin.tableExists(tableName))
{
System.out.println("table Exists!");
System.exit(0);
} else{
admin.createTable(desc);
System.out.println("create table Sucess!");
}
}
/*
* 为表添加数据(适合知道有多少列簇的固定表)
*
* @rowKey rowKey
*
* @tableName 表名
*
* @column1 第一个列簇列表
*
* @value1 第一个列的值的列表
*
* @column2 第二个列簇列表
*
* @value2 第二个列的值的列表
*/
public static void addData(String rowKey, String tableName, String[] column1,
String[] value1, String[] column2, String[] value2)throws IOException{
Put put=new Put(Bytes.toBytes(rowKey)); //设置rowKey
HTableInterface table=conn.getTable(tableName); //获取表
HColumnDescriptor[] columnFamilies=table.getTableDescriptor().getColumnFamilies();//获取所有的列簇
for(int i=0;i<columnFamilies.length;i++){
String familyName=columnFamilies[i].getNameAsString();//获取列簇名
if(familyName.equals("article")){ //article列簇put数据
for(int j=0;j<column1.length;j++){
put.add(Bytes.toBytes(familyName),
Bytes.toBytes(column1[j]),
Bytes.toBytes(value1[j])
);
}
}
if(familyName.equals("author")){ //article列簇put数据
for(int j=0;j<column2.length;j++){
put.add(Bytes.toBytes(familyName),
Bytes.toBytes(column2[j]),
Bytes.toBytes(value2[j])
);
}
}
}
table.put(put);
table.close();
System.out.println("add data Sucess!");
}
/*
* 根据rowkey查询
*
* @rowKey rowKey
*
* @tableName 表名
*/
public static Result getResult(String tableName,String rowKey)
throws IOException{
Get get=new Get(Bytes.toBytes(rowKey));
HTableInterface table=conn.getTable(tableName); //获取表
Result result=table.get(get);
for(Cell kv:result.rawCells())
{
System.out.println("family:"+new String(CellUtil.cloneFamily(kv)));
System.out.println("qualifier:"+new String(CellUtil.cloneQualifier(kv)));
System.out.println("value:"+new String(CellUtil.cloneValue(kv)));
System.out.println("Timestamp:"+kv.getTimestamp());
System.out.println("------------------------------------------");
/* System.out.println("value:"+new String(CellUtil.cloneValue(kv)));*/
}
table.close();
return result;
}
/*
* 遍历查询hbase表
*
* @tableName表名
*/
public static void getResultScan(String tableName)throws IOException{
Scan scan=new Scan();
ResultScanner rs=null;
// HTable table=(HTable)tablePool.getTable(tableName);
HTableInterface table=conn.getTable(tableName);
// Configuration hbaseConf=HBaseConfiguration.create();
// HTable table=new HTable(hbaseConf,tableName);
try {
rs=table.getScanner(scan);
for(Result r:rs)
{
for(Cell kv:r.rawCells())
{
System.out.println("family:"+new String(CellUtil.cloneFamily(kv)));
System.out.println("qualifier:"+new String(CellUtil.cloneQualifier(kv)));
System.out.println("value:"+new String(CellUtil.cloneValue(kv)));
System.out.println("Timestamp:"+kv.getTimestamp());
System.out.println("------------------------------------------");
/* System.out.println("value:"+new String(CellUtil.cloneValue(kv)));*/
}
}
} catch (Exception e) {
// TODO: handle exception
}finally{
rs.close();
table.close();
}
}
/*
* 查询表中的某一列
*
* @tableName 表名
*
* @rowKey rowKey
*
* @familyName 列簇
*
* @columnName 列名
*/
public static void getResultByColumn(String tableName,String rowKey,
String familyName,String columnName)throws IOException{
HTableInterface table=conn.getTable(tableName);
Get get=new Get(Bytes.toBytes(rowKey));
//获取指定列簇和列修饰符对应的列
get.addColumn(Bytes.toBytes(familyName),Bytes.toBytes(columnName));
Result result=table.get(get);
for(Cell kv:result.rawCells())
{
System.out.println("family:"+new String(CellUtil.cloneFamily(kv)));
System.out.println("qualifier:"+new String(CellUtil.cloneQualifier(kv)));
System.out.println("value:"+new String(CellUtil.cloneValue(kv)));
System.out.println("Timestamp:"+kv.getTimestamp());
System.out.println("------------------------------------------");
/* System.out.println("value:"+new String(CellUtil.cloneValue(kv)));*/
}
table.close();
}
/*
* 更新表中的某一列
*
* @tableName 表名
*
* @rowKey rowKey
*
* @familyName 列簇名
*
* @columnName 列名
*
* @value 更新后的值
*/
public static void updateTable(String tableName,String rowKey,
String familyName,String columnName,String value)
throws IOException{
HTableInterface table=conn.getTable(tableName);
Put put=new Put(Bytes.toBytes(rowKey));
put.add(Bytes.toBytes(familyName),Bytes.toBytes(columnName),
Bytes.toBytes(value));
table.put(put);
table.close();
System.out.println("update table Success!");
}
/*
* 查询某列数据的多个版本
*
* @tableName 表名
*
* @rowKey rowKey
*
* @familyName 列簇名
*
* @columnName 列名
*/
public static void getResultByVersion(String tableName,String rowKey,
String familyName,String columnName)throws IOException{
HTableInterface table=conn.getTable(tableName);
Get get=new Get(Bytes.toBytes(rowKey));
get.addColumn(Bytes.toBytes(familyName),Bytes.toBytes(columnName));
get.setMaxVersions(5);
Result result=table.get(get);
for(Cell kv:result.rawCells())
{
System.out.println("family:"+new String(CellUtil.cloneFamily(kv)));
System.out.println("qualifier:"+new String(CellUtil.cloneQualifier(kv)));
System.out.println("value:"+new String(CellUtil.cloneValue(kv)));
System.out.println("Timestamp:"+kv.getTimestamp());
System.out.println("------------------------------------------");
}
table.close();
}
/*
* 删除指定的列
*
* @tableName 表名
*
* @rowKey rowKey
*
* @familyName 列簇名
*
* @columnName 列名
*/
public static void deleteColumn(String tableName,String rowKey,
String familyName,String columnName)throws IOException{
HTableInterface table=conn.getTable(tableName);
Delete deleteColumn=new Delete(Bytes.toBytes(rowKey));
deleteColumn.deleteColumns(Bytes.toBytes(familyName),Bytes.toBytes(columnName));
table.delete(deleteColumn);
table.close();
System.out.println(familyName+":"+columnName+"is deleted!");
}
/*
* 删除指定的列
*
* @tableName 表名
*
* @rowKey rowKey
*/
public static void deleteAllColumn(String tableName,String rowKey)
throws IOException{
HTableInterface table=conn.getTable(tableName);
Delete deleteAll=new Delete(Bytes.toBytes(rowKey));
table.delete(deleteAll);
table.close();
System.out.println("all columns are deleted!");
}
/*
* 删除表
*
* @tableName 表名
*/
public static void deleteTable(String tableName)throws IOException{
HBaseAdmin admin=new HBaseAdmin(conf);
admin.disableTable(tableName);
admin.deleteTable(tableName);
System.out.println(tableName+" is deleted!");
}
public static void main(String[] args) throws Exception{
getResultScan("Movie");
getResult("Movie","7065187");
}
}
做个小推广:程序员经常久坐,颈椎毛病比较多,特别推荐ventry颈椎保健枕
HBase(0.96)新的Java API操作的更多相关文章
- 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 ...
- hadoop2-HBase的Java API操作
Hbase提供了丰富的Java API,以及线程池操作,下面我用线程池来展示一下使用Java API操作Hbase. 项目结构如下: 我使用的Hbase的版本是 hbase-0.98.9-hadoop ...
- java api操作
java api操作 导入开发包 将hbase安装包中lib下包导入java项目 创建表 Configuration conf = HBaseConfiguration.create(); c ...
- hive-通过Java API操作
通过Java API操作hive,算是测试hive第三种对外接口 测试hive 服务启动 package org.admln.hive; import java.sql.SQLException; i ...
- 使用Java API操作HDFS文件系统
使用Junit封装HFDS import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.fs.*; import org ...
- Kafka系列三 java API操作
使用java API操作kafka 1.pom.xml <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xs ...
- Hadoop 2.2 & HBase 0.96 Maven 依赖总结
由于Hbase 0.94对Hadoop 2.x的支持不是非常好,故直接添加Hbase 0.94的jar依赖可能会导致问题. 但是直接添加Hbase0.96的依赖,由于官方并没有发布Hbase 0.96 ...
- MongoDB Java API操作很全的整理
MongoDB 是一个基于分布式文件存储的数据库.由 C++ 语言编写,一般生产上建议以共享分片的形式来部署. 但是MongoDB官方也提供了其它语言的客户端操作API.如下图所示: 提供了C.C++ ...
- zookeeper的java api操作
zookeeper的java api操作 创建会话: Zookeeper(String connectString,int sessionTimeout,Watcher watcher) Zookee ...
随机推荐
- java动态代理实例
import java.lang.reflect.InvocationHandler; import java.lang.reflect.Method; import java.lang.reflec ...
- 湖南集训Day1
难度 不断网:☆☆☆ 断网:☆☆☆☆ /* 卡特兰数取模 由于数据范围小,直接做. 考试时断网.忘记卡特兰数公式,推错了只有5分. 数学公式要记别每次都现用现搜!!! */ #include<i ...
- 洛谷P1330 封锁阳光大学(二分图染色)
P1330 封锁阳光大学 题目描述 曹是一只爱刷街的老曹,暑假期间,他每天都欢快地在阳光大学的校园里刷街.河蟹看到欢快的曹,感到不爽.河蟹决定封锁阳光大学,不让曹刷街. 阳光大学的校园是一张由N个点构 ...
- Java经典算法之选择排序(Select Sort)
思路:就是把所有数据项扫描一遍,挑出最小的那个和最左边的交换位置,即放到0位置.现在最左边的就是有序得了,不需要在交换位置,再次扫描数据时就是从1开始,还是寻找最小的和1交换位置,直到所有数据都是有序 ...
- ACM_招新笔试题系列——买包子
招新笔试题系列——买包子 Time Limit: 2000/1000ms (Java/Others) Problem Description: 小华刚到大学,一天早上她替她室友买早餐,一共要N个包子. ...
- 题解报告:hdu 1162 Eddy's picture
Problem Description Eddy begins to like painting pictures recently ,he is sure of himself to become ...
- 转 使用Hibernate操作数据库时报:No CurrentSessionContext configured! 异常
没有currentSession配置错误,即在我们使用currentSession的时候要在hibernate.cfg.xml中进行相关的事务配置:1.本地事务<property name=&q ...
- 在Django中使用redis:包括安装、配置、启动。
一.安装redis: 1.下载: wget http://download.redis.io/releases/redis-3.2.8.tar.gz 2.解压 tar -zxvf redis-.tar ...
- jQuery——jQuery选择器
基本选择器 # Id选择器 $(“#btnShow”)选择id为btnShow的一个元素 . 类选择器 $(“.liItem”)选择含有类liItem的所有元素 ele 标签选择器 $(“li”)选择 ...
- HDU_1079_思维题
Calendar Game Time Limit: 5000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Tot ...