解決配置hive時(shí)出現(xiàn)不能加載自己修改的hive-site.xml等配置文件的問題。

配置hive時(shí)出現(xiàn)不能加載自己修改的hive-site.xml等配置文件的問題昧廷。發(fā)現(xiàn)它總是加載默認(rèn)的配置文件。
解決:
hadoop的配置文件hadoop-env.sh中加上export HADOOP_CLASSPATH=$HIVE_HOVE/conf:$HADOOP_CLASSPATH
還有一個(gè)問題:運(yùn)行其他hadoop子項(xiàng)目時(shí)總會(huì)出現(xiàn)找不到類文件偎箫,必須把相關(guān)jar包拷貝到hadoop的lib目錄下木柬,導(dǎo)致其lib目錄會(huì)越來越大。
至今不知道怎樣將其他jar包加入到classpath中,網(wǎng)上說用export HADOOP_CLASSPATH=“”淹办,但是好像不行
hive --config /root/etc/hive(注:/root/etc/hive是指hive-site.xml的存放目錄)

HiveQL以分號(hào)結(jié)束眉枕。可以跨行怜森。
在hive的shell上可以使用dfs命令執(zhí)行HDFS文件操作速挑。
dfs -ls /user/hive/warehouse;

hive語(yǔ)句必須以分號(hào)“;”結(jié)束副硅。
不支持更新姥宝,索引和事務(wù)。
表名恐疲,列名不區(qū)分大小寫腊满。
在hive的shell上可以使用dfs命令執(zhí)行HDFS文件的操作套么。>>dfs -ls /user/hive/warehouse/;
查看和設(shè)置臨時(shí)變量:>>set fs.default.name[=hdfs://zhaoxiang:9000];
導(dǎo)入jar包: >>add jar hivejar.jar;
創(chuàng)建函數(shù): >>create temporary function udfTest as 'com.cstore.udfExample';
【在pig中使用UDF,先用register語(yǔ)句注冊(cè)jar文件碳蛋,之后可以通過完全的java類名調(diào)用胚泌,或者用define語(yǔ)句為UDFding 指定一個(gè)名稱:
register pigjar.jar;
define UPPER org.pigjar.string.UPPER();
B = foreach a generate UPPER($0); 】

可以在本地命令行運(yùn)行hive的shell:
$ hive -e 'select * from userinfo' (執(zhí)行hiveQL語(yǔ)句)
$ hive --config /hive-0.9.0/conf (重新載入新的配置文件)
$ hive --service hiveserver 50000(啟動(dòng)服務(wù))

create table cite(citing int, cited int) row format delimited fields terminated by ',' stored as textfile; //sequencefle

load data (local) inpath 'cite75_99.txt' overwrite into table cite;//若不加local則默認(rèn)為HDFS路徑

select * from cite limit 10;

show tables;
describe cite;

select count(1)/count() from cite; //count(1)相當(dāng)于SQL中的count()

create table cite_count (cited int, count int);

insert overwrite table cite_count select cited , count(citing) from cite group by cited;

select * from cite_count where count > 10 limit 10;

drop table cite_count;

create table page_view(viewTime int, userid bigint,
page_url string, referrer_url string,
ip string comment 'ip address of user')
comment 'this id the page view table'
partitioned by (dt string, country string)//注意table中的列不能和partition中的列重合
clustered by (userid) into 32 buckets //桶
row format delimited
fields terminated by ','
collection items terminated by '\002'
map keys terminated by '\003'
lines terminated by '\n'
stored as textfile;

//取樣
select avg(viewTime) from page_view tablesample(bucket 1 out of 3 [on id]);

//創(chuàng)建外部表,指定目錄位置肃弟,刪除外部表時(shí)會(huì)刪除元數(shù)據(jù)玷室,表中的數(shù)據(jù)需手動(dòng)刪除
create external table page_view(viewTime int, userid bigint,
page_url string, referrer_url string,
ip string comment 'ip address of user')
location 'path/to/existing/table/in/HDFS';
//修改表
alter table page_view rename to pv;
alter table pv add columns (newcol string);
alter table pv drop partition (dt='2009-09-01');

show tables 'page_.*';

load data local inpath 'page_view.txt'
overwrite into table page_view
partition (dt='2009-09-01',country='US');

在hive的shell上執(zhí)行unix命令:命令前加感嘆號(hào)(!),命令尾加分號(hào)(;).
hive> ! ls ;
hive> ! head hive_result;

//執(zhí)行查詢:
insert overwrite table query-result; //eg: insert overwrite table query_result select * from page_view where country='US';
insert overwrite (local) directory '/hdfs-dir(local-dir)/query_result' query;
select country , count(distinct userid) from page_view group by countey;

//子查詢愕乎,只能在from子句中出現(xiàn)子查詢
select teacher, max(class-num) from
(select teacher, count(classname) as class-num from classinfo group by teacher)subquery
group by teacher;

//連接
select pv., choice., f.friends from page_view pv
join user u on (pv.userid=u.id)
join friends-list f on (u.id=f.uid);

//多表插入
create table mutil1 as select id, name from userinfo;
create table mutil2 like mutil1;
from userinfo insert overwrite table mutil1 select id, name
insert overwrite table mutil2 select count(distint id),name group by name;

//創(chuàng)建視圖
create view teacher_classnum as select teacher, count(classname) from classinfo group by teacher;

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末阵苇,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子感论,更是在濱河造成了極大的恐慌,老刑警劉巖紊册,帶你破解...
    沈念sama閱讀 207,248評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件比肄,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡囊陡,警方通過查閱死者的電腦和手機(jī)芳绩,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,681評(píng)論 2 381
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來撞反,“玉大人妥色,你說我怎么就攤上這事《羝” “怎么了嘹害?”我有些...
    開封第一講書人閱讀 153,443評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)吮便。 經(jīng)常有香客問我笔呀,道長(zhǎng),這世上最難降的妖魔是什么髓需? 我笑而不...
    開封第一講書人閱讀 55,475評(píng)論 1 279
  • 正文 為了忘掉前任许师,我火速辦了婚禮,結(jié)果婚禮上僚匆,老公的妹妹穿的比我還像新娘微渠。我一直安慰自己,他們只是感情好咧擂,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,458評(píng)論 5 374
  • 文/花漫 我一把揭開白布逞盆。 她就那樣靜靜地躺著,像睡著了一般屋确。 火紅的嫁衣襯著肌膚如雪纳击。 梳的紋絲不亂的頭發(fā)上续扔,一...
    開封第一講書人閱讀 49,185評(píng)論 1 284
  • 那天,我揣著相機(jī)與錄音焕数,去河邊找鬼纱昧。 笑死,一個(gè)胖子當(dāng)著我的面吹牛堡赔,可吹牛的內(nèi)容都是我干的识脆。 我是一名探鬼主播,決...
    沈念sama閱讀 38,451評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼善已,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼灼捂!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起换团,我...
    開封第一講書人閱讀 37,112評(píng)論 0 261
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤悉稠,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后艘包,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體的猛,經(jīng)...
    沈念sama閱讀 43,609評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,083評(píng)論 2 325
  • 正文 我和宋清朗相戀三年想虎,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了卦尊。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,163評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡舌厨,死狀恐怖岂却,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情裙椭,我是刑警寧澤躏哩,帶...
    沈念sama閱讀 33,803評(píng)論 4 323
  • 正文 年R本政府宣布,位于F島的核電站骇陈,受9級(jí)特大地震影響震庭,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜你雌,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,357評(píng)論 3 307
  • 文/蒙蒙 一器联、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧婿崭,春花似錦拨拓、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,357評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至授瘦,卻和暖如春醋界,著一層夾襖步出監(jiān)牢的瞬間竟宋,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,590評(píng)論 1 261
  • 我被黑心中介騙來泰國(guó)打工形纺, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留丘侠,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,636評(píng)論 2 355
  • 正文 我出身青樓逐样,卻偏偏與公主長(zhǎng)得像蜗字,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子脂新,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,925評(píng)論 2 344

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