HIVE隨手記——Hive命令(?$HIVE_HOME/bin/hive)
HIVE版本:0.14.0
$HIVE_HOME/bin/hive 這個shell 命令是通向包括命令列介面(CLI)等Hive服務的通道。注意,是Hive服務的通道。
使用者可以將$HIVE_HOME/bin加入到環境變數 PATH中。
使用 hive --help 命令查詢幫助選項(這裡列出了相關的語法和引數)
如上上面列印結果
Service List 後面列出了一些服務名(servicename),其中包括了,部署hive時候啟動hive的服務hiveserver,以及我們常用的命令列介面CLI。
HIVE命令使用:
(1)啟動hive thrift 服務
./hive --service hiveserver
(2)進入CLI
./hive --service cli (其實,直接用hive,會預設進入cli,作用相同)
(3)hwi HIVE WEB 介面
是一個可以執行查詢語句和其他命令的簡單Web介面,這樣可以不用登陸到叢集中的某臺及其上使用CLI來進行查詢。
詳細請見: http://blog.itpub.net/28929558/viewspace-1408291/
(4)jar
hadoop jar 命令的一個擴充套件,這樣可以執行需要的hive環境的應用
(5)metastore
啟動一個擴充套件的hive後設資料服務,可以提供多客戶端使用.
(6)rcfilecat
一個可以列印出RCFile格式檔案內容的工具
$HIVE_HOME/bin/hive 這個shell 命令是通向包括命令列介面(CLI)等Hive服務的通道。注意,是Hive服務的通道。
使用者可以將$HIVE_HOME/bin加入到環境變數 PATH中。
使用 hive --help 命令查詢幫助選項(這裡列出了相關的語法和引數)
點選(此處)摺疊或開啟
- [zhang@namenode bin]$ pwd
- /home/zhang/hive/bin
- [zhang@namenode bin]$ hive --help
-
Usage ./hive
--service serviceName - Service List: beeline cli help hiveburninclient hiveserver2 hiveserver hwi jar lineage metastore metatool orcfiledump rcfilecat schemaTool version
- Parameters parsed:
- --auxpath : Auxillary jars
- --config : Hive configuration directory
- --service : Starts specific service/component. cli is default
- Parameters used:
- HADOOP_HOME or HADOOP_PREFIX : Hadoop install directory
- HIVE_OPT : Hive options
- For help on a particular service:
- ./hive --service serviceName --help
- Debug help: ./hive --debug --help
Service List 後面列出了一些服務名(servicename),其中包括了,部署hive時候啟動hive的服務hiveserver,以及我們常用的命令列介面CLI。
HIVE命令使用:
(1)啟動hive thrift 服務
./hive --service hiveserver
(2)進入CLI
./hive --service cli (其實,直接用hive,會預設進入cli,作用相同)
點選(此處)摺疊或開啟
- Debug help: ./hive --debug --help
- [zhang@namenode bin]$ hive --service cli
- 15/01/19 22:38:43 WARN conf.HiveConf: DEPRECATED: Configuration property hive.metastore.local no longer has any effect. Make sure to provide a valid value for hive.metastore.uris if you are connecting to a remote metastore.
- 15/01/19 22:38:43 WARN conf.HiveConf: HiveConf of name hive.metastore.local does not exist
- Logging initialized using configuration in jar:file:/home/zhang/hive/lib/hive-common-0.14.0.jar!/hive-log4j.properties
- SLF4J: Class path contains multiple SLF4J bindings.
- SLF4J: Found binding in [jar:file:/home/zhang/hadoop-2.5.2/share/hadoop/common/lib/slf4j-log4j12-1.7.5.jar!/org/slf4j/impl/StaticLoggerBinder.class]
- SLF4J: Found binding in [jar:file:/home/zhang/hive/lib/hive-jdbc-0.14.0-standalone.jar!/org/slf4j/impl/StaticLoggerBinder.class]
- SLF4J: See for an explanation.
- SLF4J: Actual binding is of type [org.slf4j.impl.Log4jLoggerFactory]
- hive>
是一個可以執行查詢語句和其他命令的簡單Web介面,這樣可以不用登陸到叢集中的某臺及其上使用CLI來進行查詢。
詳細請見: http://blog.itpub.net/28929558/viewspace-1408291/
(4)jar
hadoop jar 命令的一個擴充套件,這樣可以執行需要的hive環境的應用
(5)metastore
啟動一個擴充套件的hive後設資料服務,可以提供多客戶端使用.
(6)rcfilecat
一個可以列印出RCFile格式檔案內容的工具
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/28929558/viewspace-1408132/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Hive隨手記——建庫Hive
- [hive] hive cli 命令列Hive命令列
- Hive shell 命令Hive
- HIVE 筆記Hive筆記
- [Hive]Hive排序優化Hive排序優化
- Hive --------- hive 的優化Hive優化
- Hive之 hive架構Hive架構
- 使用Hive隨機抽樣Hive隨機
- 【Hive】hive資料遷移Hive
- Hive篇--搭建Hive叢集Hive
- Hive篇---Hive使用優化Hive優化
- Hive學習筆記 1 Hive體系結構Hive筆記
- Hive學習筆記 6 Hive的JDBC連線Hive筆記JDBC
- Hive學習之六 《Hive進階— —hive jdbc》 詳解HiveJDBC
- Hive安裝手冊Hive
- 一起學Hive——使用MSCK命令修復Hive分割槽Hive
- 【Hive一】Hive安裝及配置Hive
- Hive學習筆記 2 Hive的資料型別Hive筆記資料型別
- Hive學習筆記 4 Hive的資料匯入Hive筆記
- hive on tez踩坑記2-hive0.14 on tez薦Hive
- hive學習筆記Hive筆記
- [Hive]Hive實現抽樣查詢Hive
- Hive -------- hive常見查詢練習Hive
- HIVE基本語法以及HIVE分割槽Hive
- Hive學習之Hive的安裝Hive
- hive匯出到csv hive匯出到excelHiveExcel
- Hive的原理—— 深入淺出學HiveHive
- hive學習之一:認識hiveHive
- spark with hiveSparkHive
- hive partitionHive
- hive nullHiveNull
- [Hive]hive分割槽設定注意事項Hive
- [hive]hive資料模型中四種表Hive模型
- Hive SQL 監控系統 - Hive FalconHiveSQL
- Hive之 hive與hadoop的聯絡HiveHadoop
- Hive入門學習隨筆(二)Hive
- Hive學習筆記 5 Hive的資料查詢、函式Hive筆記函式
- hive命令的3中呼叫方式Hive