Hbase 關(guān)聯(lián) hive 表

Hbase 是可以支持實(shí)時(shí)查詢的非關(guān)系行數(shù)據(jù)庫水援,采用列存儲(chǔ)的同時(shí)也是的直接查詢的數(shù)據(jù)不太直觀摧阅,對(duì)此顽腾,我們可以將之關(guān)聯(lián)hive表喜鼓,通過HQL大到查詢Hbase的目的

Hbase 關(guān)聯(lián) hive 表有兩種方式(通過建立hive管理表 和 外表的方式實(shí)現(xiàn))

通過管理表

1际乘、創(chuàng)建hive-hbase 管理表:

drop table tbl_hive_mange;

create table tbl_hive_mange

(key String,

dict_id String,

city_id String,

city_name String,

city_code String,

group_id String,

group_name String,

area_code String,

bureau_id String,

sort String,

bureau_name String)

row format delimited

fields terminated by '|'

STORED BY 'org.apache.hadoop.hive.hbase.HBaseStorageHandler'

WITH SERDEPROPERTIES("hbase.columns.mapping" = ":key,

? ? info:dict_id,

? ? info:city_id,

? ? info:city_name,

? ? info:city_code,

? ? info:group_id,

? ? info:group_name,

? ? info:area_code,

? ? info:bureau_id,

? ? info:sort,

? ? info:bureau_name")

TBLPROPERTIES("hbase.table.name" = "tbl_hive_mange");

創(chuàng)建hive-hbase 管理表

2坡倔、創(chuàng)建普通的 hive 管理表

drop table tbl_hive_mange_1;

create table tbl_hive_mange_1

(key String,

dict_id String,

city_id String,

city_name String,

city_code String,

group_id String,

group_name String,

area_code String,

bureau_id String,

sort String,

bureau_name String)

row format delimited

fields terminated by '|'

STORED AS TEXTFILE;

創(chuàng)建普通的 hive 管理表

3、向 tbl_hive_mange_1 中添加數(shù)據(jù)

load data inpath 'hdfs:/ns1/user/hive/warehouse/xx.db/a...' into table tbl_hive_mange_1;

向 tbl_hive_mange_1 中添加數(shù)據(jù)

4脖含、將 tbl_hive_mange_1 的數(shù)據(jù)添加到 tbl_hive_mange

insert overwrite table tbl_hive_mange select * from tbl_hive_mange_1;

將 tbl_hive_mange_1 的數(shù)據(jù)添加到 tbl_hive_mange

目前為止:

建立了一張Hbase的表:tbl_hive_mange

并關(guān)聯(lián)了 hive 表:tbl_hive_mange

同時(shí)將hive表 tbl_hive_mange_1 的數(shù)據(jù)添加到了 tbl_hive_mange

可以通過hivev表:tbl_hive_mange查詢Hbase表:tbl_hive_mange 數(shù)據(jù)

注:

a:建立hive-hbase 管理表 tbl_hive_mange 后不能直接通過load data 的方式添加數(shù)據(jù)

hive> load data inpath 'hdfs://ns1/user/hive/warehouse/xx.db/tbl_hive_test' into table tbl_hive_test;

FAILED: SemanticException [Error 10101]: A non-native table cannot be used as target for LOAD

load data

b:通過 desc formatted tbl_hive_mange 可以看到在默認(rèn)的hive數(shù)據(jù)存儲(chǔ)路徑下存在制定文件夾罪塔,但是卻沒有數(shù)據(jù),表明這個(gè)數(shù)據(jù)是存在hbase下面的养葵。

desc formatted tbl_hive_mange

c:刪除表操作

先刪除hbase(disabled->drop)

hbase(main):003:0> disable 'tbl_hive_mange'

0 row(s) in 2.5610 seconds

hbase(main):004:0> drop 'tbl_hive_mange'

0 row(s) in 1.3140 seconds

刪除表操作

此時(shí)show tables 在hive里面能看到tbl_hive_mange 但是已經(jīng)沒有數(shù)據(jù)了征堪,用show tables還能查出來。但是用select * from tbl_hive_mange 查詢的時(shí)候報(bào)錯(cuò)

show tables

此時(shí)mysql中TBLS還有hive表的信息关拒,執(zhí)行drop table? tbl_hive_mange 報(bào)錯(cuò)佃蚜。

drop table

繼續(xù)show tables時(shí),發(fā)現(xiàn)表已經(jīng)不在了着绊。TBLS里面也沒有hive表信息了谐算。

通過管理表


1、建立外部表(hive),關(guān)聯(lián)存在hbase表

drop table tbl_hive_xternal;

create xternal table tbl_hive_xternal

(key String,

dict_id String,

city_id String,

city_name String,

city_code String,

group_id String,

group_name String,

area_code String,

bureau_id String,

sort String,

bureau_name String)

row format delimited

fields terminated by '|'

STORED BY 'org.apache.hadoop.hive.hbase.HBaseStorageHandler'

WITH SERDEPROPERTIES("hbase.columns.mapping" = ":key,

? ? info:dict_id,

? ? info:city_id,

? ? info:city_name,

? ? info:city_code,

? ? info:group_id,

? ? info:group_name,

? ? info:area_code,

? ? info:bureau_id,

? ? info:sort,

? ? info:bureau_name")

TBLPROPERTIES("hbase.table.name" = "tbl_hive_xternal");

建立外部表(hive),關(guān)聯(lián)存在hbase表

2归露、創(chuàng)建普通的 hive 管理表

drop table tbl_hive_xternal_1;

create table tbl_hive_xternal_1

(key String,

dict_id String,

city_id String,

city_name String,

city_code String,

group_id String,

group_name String,

area_code String,

bureau_id String,

sort String,

bureau_name String)

row format delimited

fields terminated by '|'

STORED AS TEXTFILE;

創(chuàng)建普通的 hive 管理表

3洲脂、向 tbl_hive_xternal_1 中添加數(shù)據(jù)

load data inpath 'hdfs:/ns1/user/hive/warehouse/xx.db/a...' into table tbl_hive_xternal_1;

向 tbl_hive_xternal_1 中添加數(shù)據(jù)

4、將 tbl_hive_xternal_1 的數(shù)據(jù)添加到 tbl_hive_xternal

insert overwrite table tbl_hive_xternal select * from tbl_hive_xternal_1;

將 tbl_hive_xternal_1 的數(shù)據(jù)添加到 tbl_hive_xternal

目前為止:

建立了 hive 外部表表: tbl_hive_xternal

同時(shí)將hive表 tbl_hive_xternal_1 的數(shù)據(jù)添加到了 tbl_hive_xternal

可以通過hivev表: tbl_hive_xternal 查詢Hbase表: tbl_hive_xternal 數(shù)據(jù)


注:

a:使用外部表需要確保 hbase的表存在剧包,同時(shí)在建立hive標(biāo)的時(shí)候可以指定hbase中不存在的列

b:desc formatted tbl_hive_xternal可以看到存儲(chǔ)文件的路徑恐锦,但是真實(shí)的數(shù)據(jù)存儲(chǔ)在hbase

c:刪除操作:刪除hive表對(duì)hbase操作沒有影響; 但是刪除hbase表后hive查詢會(huì)報(bào)錯(cuò)(數(shù)據(jù)存hbase)

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末玄捕,一起剝皮案震驚了整個(gè)濱河市踩蔚,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌枚粘,老刑警劉巖馅闽,帶你破解...
    沈念sama閱讀 211,194評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡福也,警方通過查閱死者的電腦和手機(jī)局骤,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,058評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來暴凑,“玉大人峦甩,你說我怎么就攤上這事∠衷” “怎么了凯傲?”我有些...
    開封第一講書人閱讀 156,780評(píng)論 0 346
  • 文/不壞的土叔 我叫張陵,是天一觀的道長嗦篱。 經(jīng)常有香客問我冰单,道長,這世上最難降的妖魔是什么灸促? 我笑而不...
    開封第一講書人閱讀 56,388評(píng)論 1 283
  • 正文 為了忘掉前任诫欠,我火速辦了婚禮,結(jié)果婚禮上浴栽,老公的妹妹穿的比我還像新娘荒叼。我一直安慰自己,他們只是感情好典鸡,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,430評(píng)論 5 384
  • 文/花漫 我一把揭開白布被廓。 她就那樣靜靜地躺著,像睡著了一般椿每。 火紅的嫁衣襯著肌膚如雪伊者。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,764評(píng)論 1 290
  • 那天间护,我揣著相機(jī)與錄音亦渗,去河邊找鬼。 笑死汁尺,一個(gè)胖子當(dāng)著我的面吹牛法精,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播痴突,決...
    沈念sama閱讀 38,907評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼搂蜓,長吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來了辽装?” 一聲冷哼從身側(cè)響起帮碰,我...
    開封第一講書人閱讀 37,679評(píng)論 0 266
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎拾积,沒想到半個(gè)月后殉挽,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體丰涉,經(jīng)...
    沈念sama閱讀 44,122評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,459評(píng)論 2 325
  • 正文 我和宋清朗相戀三年斯碌,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了一死。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,605評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡傻唾,死狀恐怖投慈,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情冠骄,我是刑警寧澤伪煤,帶...
    沈念sama閱讀 34,270評(píng)論 4 329
  • 正文 年R本政府宣布,位于F島的核電站猴抹,受9級(jí)特大地震影響带族,放射性物質(zhì)發(fā)生泄漏锁荔。R本人自食惡果不足惜蟀给,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,867評(píng)論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望阳堕。 院中可真熱鬧跋理,春花似錦、人聲如沸恬总。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,734評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽壹堰。三九已至拭卿,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間贱纠,已是汗流浹背峻厚。 一陣腳步聲響...
    開封第一講書人閱讀 31,961評(píng)論 1 265
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留谆焊,地道東北人惠桃。 一個(gè)月前我還...
    沈念sama閱讀 46,297評(píng)論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像辖试,于是被迫代替她去往敵國和親辜王。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,472評(píng)論 2 348

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