zoukankan      html  css  js  c++  java
  • Relative path in absolute URI: ${system:java.io.tmpdir%7D/$%7Bhive.session.id%7D_resources

    原因:环境变量设置问题

     <property>
        <name>Hive.exec.local.scratchdir</name>
        <value>${system:Java.io.tmpdir}/${system:user.name}</value>
        <description>Local scratch space for hive jobs</description>
      </property>
      <property>
        <name>hive.downloaded.resources.dir</name>
        <value>${system:java.io.tmpdir}/${hive.session.id}_resources</value>
        <description>Temporary local directory for added resources in the remote file system.</description>
      </property>
      <property>

    解决方案如下:
    1.查看hive-site.xml配置,会看到配置值含有"system:java.io.tmpdir"的配置项
    2.新建文件夹/home/grid/hive-0.14.0-bin/iotmp
    3.将含有"system:java.io.tmpdir"的配置项的值修改为如上地址
    启动hive,成功!


    启动情况如下:
    $ ./hive
    Logging initialized using configuration in jar:file:/home/grid/hive-0.14.0-bin/lib/hive-common-0.14.0.jar!/hive-log4j.properties
    hive> 

  • 相关阅读:
    ansible语法
    hadoop本地模式安装及配置
    linux免密钥登录
    ansible配置文件
    ansible(安装)
    elasticsearch基本概念
    elasticsearch基本概念
    elasticsearch倒排索引介绍
    Flex tree展开节点问题!
    Oracle-Trigger-Insert tableA and tableB
  • 原文地址:https://www.cnblogs.com/wmcoder/p/7099235.html
Copyright © 2011-2022 走看看