我正在尝试在本地模式配置中设置hive-0.9.0。在/ conf中,我创建了hive-site.xml并指定了仓库文件夹的属性。 但我认为配置单元没有使用我定义的位置,因为它没有在该位置创建“仓库”文件夹。
此外,是否有必要让hadoop集群在本地模式配置单元配置中运行,因为当我发出任何DDL命令而不启动hadoop集群时它会抛出错误。
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>
答案 0 :(得分:0)
Hive查询在内部运行mapreduce。所以当你试图查询Hive时,hadoop必须启动。