0%

hive常见配置

hive常见配置

查看当前配置

1
2
3
4
# 查看所有的配置
set;
# 查看某一个具体的配置
set hive.metastore.uris;

配置的方式

配置文件方式

默认配置文件 hive-default.xml

自定义配置文件 hive-site.xml

命令行启动方式

在命令行添加-hiveconf param=value(仅对此次hive连接有效)

1
bin/hive -hiveconf hive.metastore.uris=thrift://localhost:9083;

hive中set配置

仅对此次hive连接有效

1
set hive.metastore.uris=thrift://localhost:9083;

常用配置

打印当前库

1
2
3
4
5
6
7
8
<property>
<name>hive.cli.print.header</name>
<value>true</value>
</property>
<property>
<name>hive.cli.print.current.db</name>
<value>true</value>
</property>

欢迎关注我的其它发布渠道