我正在尝试在本地模式配置中设置 hive-0.9.0。在 /conf 中,我创建了 hive-site.xml 并指定了仓库文件夹的属性。但我认为 hive 没有使用我定义的位置,因为它没有在该位置创建“仓库”文件夹。
此外,是否有必要让 hadoop 集群在本地模式配置单元配置中运行,因为当我在没有启动 hadoop 集群的情况下发出任何 DDL 命令时它会引发错误。
FAILED: Error in metadata: MetaException(message:Got exception: java.net.ConnectException Call to localhost/127.0.0.1:54310 failed on connection exception: java.net.ConnectException: Connection refused)
hive-site.xml的内容如下:
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
<configuration>
<property>
<name>hive.metastore.warehouse.dir</name>
<value>/home/hadoopuser/hive/warehouse</value>
<description>
Local or HDFS directory where Hive keeps table contents.
</description>
</property>
<property>
<name>hive.metastore.local</name>
<value>true</value>
<description>
Use false if a production metastore server is used.
</description>
</property>
<property>
<name>javax.jdo.option.ConnectionURL</name>
<value>jdbc:derby:;databaseName=/home/hadoopuser/hive/metastore_db;create=true</value>
<description>
The JDBC connection URL.
</description>
</property>
</configuration>