Hive作為大數(shù)據(jù)環(huán)境下的數(shù)據(jù)倉(cāng)庫(kù)工具,支持基于hadoop以sql的方式執(zhí)行mapreduce的任務(wù),非常適合對(duì)大量的數(shù)據(jù)進(jìn)行全量的查詢分析。
本文主要講述下hive載cli中如何導(dǎo)入導(dǎo)出數(shù)據(jù):
導(dǎo)入數(shù)據(jù)
第一種方式,直接從本地文件系統(tǒng)導(dǎo)入數(shù)據(jù)
我的本機(jī)有一個(gè)test1.txt文件,這個(gè)文件中有三列數(shù)據(jù),并且每列都是以'\t'為分隔
[root@localhost conf]# cat /usr/tmp/test1.txt1 a1 b12 a2 b23 a3 b34 a4 b
創(chuàng)建數(shù)據(jù)表:
>create table test1(a string,b string,c string) >row format delimited >fields terminated by '\t'>stored as textfile;
導(dǎo)入數(shù)據(jù):
網(wǎng)友評(píng)論