蜂巢安装错误:URl

时间:2016-06-04 00:58:03

标签: hadoop hive

Logging initialized using configuration in jar:file:/usr/local/Cellar/hive/2.0.1/libexec/lib/hive-common-2.0.1.jar!/hive-log4j2.properties
Exception in thread "main" java.lang.IllegalArgumentException: java.net.URISyntaxException: Relative path in absolute URI: ${system:java.io.tmpdir%7D/$%7Bsystem:user.name%7D
    at org.apache.hadoop.fs.Path.initialize(Path.java:205)
    at org.apache.hadoop.fs.Path.<init>(Path.java:171)
    at org.apache.hadoop.hive.ql.session.SessionState.createSessionDirs(SessionState.java:628)
    at org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:548)
    at org.apache.hadoop.hive.ql.session.SessionState.beginStart(SessionState.java:516)
    at org.apache.hadoop.hive.cli.CliDriver.run(CliDriver.java:712)
    at org.apache.hadoop.hive.cli.CliDriver.main(CliDriver.java:648)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:497)
    at org.apache.hadoop.util.RunJar.run(RunJar.java:221)
    at org.apache.hadoop.util.RunJar.main(RunJar.java:136)
Caused by: java.net.URISyntaxException: Relative path in absolute URI: ${system:java.io.tmpdir%7D/$%7Bsystem:user.name%7D
    at java.net.URI.checkPath(URI.java:1823)
    at java.net.URI.<init>(URI.java:745)
    at org.apache.hadoop.fs.Path.initialize(Path.java:202)
    ... 12 more

当我尝试运行配置单元时,我收到上述错误。请让我知道为什么会出现此错误 谢谢

2 个答案:

答案 0 :(得分:0)

如果这些是Log4j Lookups,则应将它们指定为

${sys:java.io.tmpdir}/${sys:user.name}

而不是

${system:java.io.tmpdir}/${system:user.name}

答案 1 :(得分:0)

HDFS网站应修改如下:

<name>hive.exec.scratchdir</name>
<value>/tmp/hive-${user.name}</value>

<name>hive.exec.local.scratchdir</name>
<value>/tmp/${user.name}</value>

<name>hive.downloaded.resources.dir</name>
<value>/tmp/${user.name}_resources</value>

<name>hive.scratch.dir.permission</name>
<value>733</value>
相关问题