1.1、與hdfs互動:dfs開頭
執行執行dfs命令,例:dfs –ls /
1.2、與linux互動:!開頭
例: !pwd
示例01:[root@node03 ~]# hive -e "select * from psn;"
其他:示例02:在/usr/local目錄下建立乙個sql檔案
vi sql
select * from psn14 limit 2;
select * from psn;
然後儲存。
執行指令碼:hive -f /usr/local/sql
web介面安裝:
在部署hive伺服器的地方設定,將hwi war包放在$hive_home/lib/製作方法:將hwi/web/*裡面所有的檔案打成war包;cd apache-hive-1.2.1-src/hwi/web;jar -cvf hive-hwi.war *
複製tools.jar(在jdk的lib目錄下)到$hive_home/lib下
修改hive-site.xml啟動hwi服務(埠號9999)啟動hive伺服器:hive --service hwi
修改hive配置檔案hive-site.xml新增以下配置內容:
此方式體驗度不是很好,不過適合檢視元資料資訊。
hive指令碼執行方式
hive指令碼的執行方式 hive指令碼的執行方式大致有三種 usage hive commands.e.g.d a b or define a b database specify the database to use e sql from command line f sql from fil...
Hive指令碼執行方式
1.hive e 將hive查詢的結果直接輸出到.taopaiche.txt 本地目錄非hdfs目錄 hive e select x.car number,x.area name,x.etcname,x.idcard,x.color,y.area name area name1,y.color co...
hive幾種執行sql的方式總結
在命令列介面下,我們來看看hive sql的幾種執行方式 1.bin hive e eg bin hive e select from db hive.student 2.bin hive f eg touch hivef.sql select from db hive.student bin hi...