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进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。