您好,登錄后才能下訂單哦!
hive怎么顯示當前數據庫名,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
當hive CLI啟動時,在hive > 提示符出現之前會優先執行文件.hiverc,Hive會自動在${HIVE_HOME}/bin目錄下尋找名為.hiverc文件,由此可以在這個文件中設置配置一些常用的參數。由于它是隱藏文件,我們可以用Linux的ls -a命令查看。
編寫 .hiverc,參考鏈接, 有說放在 $HOME/.hiverc 或者 $HIVE_HOME/bin/.hiverc
Putting the global hiverc in $HIVE_HOME/bin/.hiverc is deprecated. Please use $HIVE_CONF_DIR/.hiverc instead
#在命令行中顯示當前數據庫名 set hive.cli.print.current.db=true; #查詢出來的結果顯示列的名稱 set hive.cli.print.header=true; #啟用桶表 set hive.enforce.bucketing=true; #壓縮hive的中間結果 set hive.exec.compress.intermediate=true; #對map端輸出的內容使用BZip2編碼/解碼器 set mapred.map.output.compression.codec=org.apache.hadoop.io.compress.BZip2Codec; #壓縮hive的輸出 set hive.exec.compress.output=true; #對hive中的MR輸出內容使用BZip2編碼/解碼器 set mapred.output.compression.codec=org.apache.hadoop.io.compress.BZip2Codec; #讓hive盡量嘗試local模式查詢而不是mapred方式 set hive.exec.mode.local.auto=true;
Wednesday, August 28, 2013 Apache Hive: The .hiverc file What is .hiverc file? It is a file that is executed when you launch the hive shell - making it an ideal place for adding any hive configuration/customization you want set, on start of the hive shell. This could be: - Setting column headers to be visible in query results - Making the current database name part of the hive prompt - Adding any jars or files - Registering UDFs .hiverc file location The file is loaded from the hive conf directory. I have the CDH4.2 distribution and the location is: /etc/hive/conf.cloudera.hive1 If the file does not exist, you can create it. It needs to be deployed to every node from where you might launch the Hive shell. [Note: I had to create the file; The distribution did not come with it.] Sample .hiverc add jar /home/airawat/hadoop-lib/hive-contrib-0.10.0-cdh5.2.0.jar; set hive.exec.mode.local.auto=true; set hive.cli.print.header=true; set hive.cli.print.current.db=true; set hive.auto.convert.join=true; set hive.mapjoin.smalltable.filesize=30000000;
1)在 hive-site.xml文件中添加如下配置信息,就可以實現顯示當前數據庫,以及查詢表的頭信息配置。
<property> <name>hive.cli.print.header</name> <value>true</value> </property> <property> <name>hive.cli.print.current.db</name> <value>true</value> </property>
2)重新啟動hive,對比配置前后差異。
配置前:
配置后:
看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。