首页 > 系统服务 > 详细

shell脚本中变量接受hive语句的返回值问题

时间:2019-10-15 10:01:13      阅读:326      评论:0      收藏:0      [点我收藏+]

问题

20190916


有时在写shell脚本时,脚本变量可以接受hive语句的返回值

#!bin/bash
sql1="
use mydatabase;
select min(colmun) from table_name;
"
var1=`hive -S -e "${sql1}"`
sql2="
use  mydatabase;
select cast(1 as tinyint) as flag;
"
var2=`hive -S -e "${sql2}"`

但有时,hive -S -e "sql"语句执行完后,有时候执行会包含 WARN开头的日志:
WARN: The method class org.apache.commons.logging.impl.SLF4JLogFactory#release() was invoked.
WARN: Please see http://www.slf4j.org/codes.html#release for an explanation.
此时变量var接受的返回值里含有这几行WARN...语句,下面几种解决方法。\

  • 方法1
var=`hive -e "${sql}" | grep -v "WARN"`
  • 方法2
  • 添加 export HIVE_SKIP_SPARK_ASSEMBLY=true; 到 /etc/profile
echo “export HIVE_SKIP_SPARK_ASSEMBLY=true;” >> /etc/profile
source /etc/profile

参考

hive -e "sql"重定向
hive -e "sql"WARN
shell grep命令和正则表达

shell脚本中变量接受hive语句的返回值问题

原文:https://www.cnblogs.com/damahuhu/p/11675518.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!