Hive作為大數(shù)據(jù)環(huán)境下的數(shù)據(jù)倉庫工具,支持基于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ù):
延伸閱讀
- ssh框架 2016-09-30
- 阿里移動(dòng)安全 [無線安全]玩轉(zhuǎn)無線電——不安全的藍(lán)牙鎖 2017-07-26
- 消息隊(duì)列NetMQ 原理分析4-Socket、Session、Option和Pipe 2024-03-26
- Selective Search for Object Recognition 論文筆記【圖片目標(biāo)分割】 2017-07-26
- 詞向量-LRWE模型-更好地識(shí)別反義詞同義詞 2017-07-26
- 從棧不平衡問題 理解 calling convention 2017-07-26
- php imagemagick 處理 圖片剪切、壓縮、合并、插入文本、背景色透明 2017-07-26
- Swift實(shí)現(xiàn)JSON轉(zhuǎn)Model - HandyJSON使用講解 2017-07-26
- 阿里移動(dòng)安全 Android端惡意鎖屏勒索應(yīng)用分析 2017-07-26
- 集合結(jié)合數(shù)據(jù)結(jié)構(gòu)來看看(二) 2017-07-26