Hbase Java API 使用

1.配置環(huán)境

1)eclipse和jdk的下載安裝配置

2)加載相關(guān)xml文件

pom.xml添加maven依賴

添加配置文件至新創(chuàng)建的resources中 ? 找到hbase? zookeeper? hadoop

configuration實(shí)例中添加 ? conf ?將配置文件放到classpath

新建一個source folder碘箍,將下面5個文件放入

hbase-site ?regionserver ? log4j ?hdfs-site ? core-site

3)client 操作 ? ? ? ? ?增刪改查

package org.apache.hadoop.hbase;

import java.io.IOException;

import java.io.InterruptedIOException;

import org.apache.hadoop.conf.Configuration;

import org.apache.hadoop.hbase.client.Delete;

import org.apache.hadoop.hbase.client.Get;

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;

import org.apache.hadoop.hbase.filter.Filter;

import org.apache.hadoop.hbase.filter.PrefixFilter;

import org.apache.hadoop.hbase.util.Bytes;

public class HClient {

public static HTable getTable(String name) throws Exception{

//create a hbase configuration instance

Configuration conf = HBaseConfiguration.create();

//create a htabel instance

HTable table = new HTable(conf, name);

return table;

}

/**

* get data from hbase table

* get:

* get 'student:stu_info','20161204_1001'

* get 'student:stu_info','20161204_1001','info'

* get 'student:stu_info','20161204_1001','info:name'

* @throws Exception

*/

public static void getData(HTable table) throws Exception {

// TODO Auto-generated method stub

//create a get instance

Get get = new Get(Bytes.toBytes("20161204_1003"));

//configure the get

//get.addColumn(Bytes.toBytes("info"), Bytes.toBytes("name"));

//get.addFamily(family);

//add to table

Result? rs = table.get(get);

//print

for(Cell cell : rs.rawCells()){

System.out.println(

Bytes.toString(CellUtil.cloneRow(cell))

+"->"+

Bytes.toString(CellUtil.cloneFamily(cell))

+"->"+

Bytes.toString(CellUtil.cloneQualifier(cell))

+"->"+

Bytes.toString(CellUtil.cloneValue(cell))

+"->"+

cell.getTimestamp()

);

System.out.println("---------------------------------------------------");

}

}

/**

* put the data to hbase table

* put:

* put 'student:stu_info','20161204_1003','info:name','laosan'

* @param args

* @throws Exception

* @throws RetriesExhaustedWithDetailsException

* @throws Exception

*/

public static void putData(HTable table) throws RetriesExhaustedWithDetailsException, Exception{

//create a put instance

Put put = new Put(Bytes.toBytes("20161204_1003"));

put.add(

Bytes.toBytes("info"),

Bytes.toBytes("name"),

Bytes.toBytes("laosan")

);

//add to table

table.put(put);

getData(table);

}

/**

* delete data from hbase table

* delete

* delete 'student:stu_info', '20161204_1003', 'info:age'

* @param args

* @throws Exception

* @throws Exception

*/

public static void deleteData(HTable table) throws Exception{

//create a delete instance

Delete delete = new Delete(Bytes.toBytes("20161204_1003"));

//conf the delete

delete.deleteColumn(Bytes.toBytes("info"), Bytes.toBytes("age"));

//delete.deleteColumns(family, qualifier);

//add the delete

table.delete(delete);

getData(table);

}

/**

* scan the data from the hbase table

* scan :

* scan 'student:stu_info'

*

* @param args

* @throws Exception

* @throws Exception

*/

public static void scanData(HTable table) throws Exception{

//create a scan instance

Scan scan = new Scan();

//add to table

ResultScanner rsscan = table.getScanner(scan);

//print

for(Result rs : rsscan){

System.out.println(Bytes.toString(rs.getRow()));

for(Cell cell: rs.rawCells()){

System.out.println(

Bytes.toString(CellUtil.cloneRow(cell))

+"->"+

Bytes.toString(CellUtil.cloneFamily(cell))

+"->"+

Bytes.toString(CellUtil.cloneQualifier(cell))

+"->"+

Bytes.toString(CellUtil.cloneValue(cell))

+"->"+

cell.getTimestamp()

);

}

System.out.println("------------------------------");

}

}

/**

* range scan

* @param table

* @throws Exception

*/

public static void rangeScan(HTable table) throws Exception {

// TODO Auto-generated method stub

//create a scan

Scan scan = new Scan();

//conf the scan

//scan.addColumn(family, qualifier);

//scan.addFamily(Bytes.toBytes("info"));

//scan.setStartRow(Bytes.toBytes("20161204_1002"));

//scan.setStopRow(Bytes.toBytes("20161204_1003"));

Filter filter = new PrefixFilter(Bytes.toBytes("2016121"));

scan.setFilter(filter);

//特殊配置

//設(shè)置是否開啟緩存

scan.setCacheBlocks(true);

//緩存的條數(shù)

scan.setCaching(100);

//設(shè)置每次取多少條

scan.setBatch(10);

//這兩個參數(shù)共同決定了RPC請求次數(shù)

//add to table

ResultScanner rsscan = table.getScanner(scan);

//print

for(Result rs : rsscan){

System.out.println(Bytes.toString(rs.getRow()));

for(Cell cell: rs.rawCells()){

System.out.println(

Bytes.toString(CellUtil.cloneRow(cell))

+"->"+

Bytes.toString(CellUtil.cloneFamily(cell))

+"->"+

Bytes.toString(CellUtil.cloneQualifier(cell))

+"->"+

Bytes.toString(CellUtil.cloneValue(cell))

+"->"+

cell.getTimestamp()

);

}

System.out.println("------------------------------");

}

}

public static void main(String[] args) throws Exception {

HTable table = getTable("student:stu_info");

//getData(table);

//putData(table);

//deleteData(table);

//scanData(table);

rangeScan(table);

}

}

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末懊渡,一起剝皮案震驚了整個濱河市亦镶,隨后出現(xiàn)的幾起案子坚冀,更是在濱河造成了極大的恐慌,老刑警劉巖已球,帶你破解...
    沈念sama閱讀 211,265評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件巍沙,死亡現(xiàn)場離奇詭異犯祠,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)窖铡,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,078評論 2 385
  • 文/潘曉璐 我一進(jìn)店門疗锐,熙熙樓的掌柜王于貴愁眉苦臉地迎上來坊谁,“玉大人,你說我怎么就攤上這事滑臊】谏郑” “怎么了?”我有些...
    開封第一講書人閱讀 156,852評論 0 347
  • 文/不壞的土叔 我叫張陵雇卷,是天一觀的道長鬓椭。 經(jīng)常有香客問我,道長关划,這世上最難降的妖魔是什么小染? 我笑而不...
    開封第一講書人閱讀 56,408評論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮贮折,結(jié)果婚禮上裤翩,老公的妹妹穿的比我還像新娘。我一直安慰自己调榄,他們只是感情好踊赠,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,445評論 5 384
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著每庆,像睡著了一般筐带。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上缤灵,一...
    開封第一講書人閱讀 49,772評論 1 290
  • 那天烫堤,我揣著相機(jī)與錄音,去河邊找鬼凤价。 笑死鸽斟,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的利诺。 我是一名探鬼主播富蓄,決...
    沈念sama閱讀 38,921評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼慢逾!你這毒婦竟也來了立倍?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,688評論 0 266
  • 序言:老撾萬榮一對情侶失蹤侣滩,失蹤者是張志新(化名)和其女友劉穎口注,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體君珠,經(jīng)...
    沈念sama閱讀 44,130評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡寝志,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,467評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片材部。...
    茶點(diǎn)故事閱讀 38,617評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡毫缆,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出乐导,到底是詐尸還是另有隱情苦丁,我是刑警寧澤,帶...
    沈念sama閱讀 34,276評論 4 329
  • 正文 年R本政府宣布物臂,位于F島的核電站旺拉,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏棵磷。R本人自食惡果不足惜蛾狗,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,882評論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望泽本。 院中可真熱鬧淘太,春花似錦、人聲如沸规丽。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,740評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽赌莺。三九已至冰抢,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間艘狭,已是汗流浹背挎扰。 一陣腳步聲響...
    開封第一講書人閱讀 31,967評論 1 265
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留巢音,地道東北人遵倦。 一個月前我還...
    沈念sama閱讀 46,315評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像官撼,于是被迫代替她去往敵國和親梧躺。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,486評論 2 348

推薦閱讀更多精彩內(nèi)容

  • http://blog.csdn.net/fengzheku/article/details/48447791 p...
    木子Qing閱讀 2,524評論 1 1
  • 目錄: 引言 -- 參數(shù)基礎(chǔ) 1. 結(jié)構(gòu)(Structural)過濾器--FilterList 2.列值過濾器--...
    磊寶萬歲閱讀 1,482評論 0 2
  • 最近寫HBase傲绣,發(fā)現(xiàn)很多功能都不建議使用掠哥,依據(jù)官方的文檔寫了份關(guān)于增刪改查的測試案例,供學(xué)習(xí)交流秃诵。 import...
    沈穎閱讀 1,272評論 0 1
  • hbase是一個數(shù)據(jù)庫续搀,用于數(shù)據(jù)存儲,mapreduce是一個計(jì)算框架菠净,用于數(shù)據(jù)處理 集成的模型 hbase作為m...
    柳仁兒閱讀 1,883評論 0 2
  • 入門指南 1. 簡介 Quickstart會讓你啟動和運(yùn)行一個單節(jié)點(diǎn)單機(jī)HBase禁舷。 2. 快速啟動 – 單點(diǎn)HB...
    和心數(shù)據(jù)閱讀 4,524評論 1 41