zoukankan      html  css  js  c++  java
  • hive 日志

    hive中日志分为两种:

    1 系统日志,记录hive运行情况,错误状态

    2 job日志 , 记录hive中 job执行的历史过程

    系统日志存储位置:

    配置在 hive/conf/hive-log4j.properties 文件中记录了hive日志存储情况

    默认存储信息:

    hive.root.logger=WARN,DRFA

    hive.log.dir=/tmp/${user.name}

    hive.log.file=hive.log -- 默认文件名

    比如,在工作中,chd集群上, hive.log就存储在  /tmp/hdfs/这个账户下,hive.log是一天一个文件

    样子如下:

    hive.log

    hive.log.2016-03-31

    hive.log.2016-03-30

    hive.log.2016-03-29

    这个日志记录的最全,我们执行的所有sql语句都和mr执行信息都写在里面,因此在整体提交一个超长的

    sql后如果报错了,可以来这里看具体执行到哪个sql语句来跟踪。

    job日志位置:

    默认在 /tmp/${user.name}下,

  • 相关阅读:
    lambda表达式
    切片操作
    小样本学习(Few-shot Learning)
    TensorFlow Eager 模式
    tensorflow读入数据集的方式
    综述类解读
    pyCharm永久激活
    shell脚本教程
    GNN
    Tomcat配置优化
  • 原文地址:https://www.cnblogs.com/qiuhong10/p/7815611.html
Copyright © 2011-2022 走看看