shell 脚本运行 hive sql

Posted SO

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell 脚本运行 hive sql相关的知识,希望对你有一定的参考价值。

#!/b

START=$(date +%s);

datebegin=`date -d "$1" "+%Y%m%d"`
dateend=`date -d "$2" "+%Y%m%d"`
sdate=`date -d "$datebegin -1 days" "+%Y%m%d"`

while [ "$datebegin" -le "$dateend" ]
do
echo $datebegin

/usr/local/hivebi/bin/hive<<EOF

--hive sql like:
DROP TABLE IF EXISTS yourDB.yourTableName;

EOF

  datebegin=`date -d "$datebegin +1 day " +%Y%m%d`

  sdate=`date -d "$sdate +1 day " +%Y%m%d`

done

END=$(date +%s);
echo $((END-START)) | awk {print int($1/3600)":"int($1%3600/60)":"int($1%3600%60)}

 

使用方法:

chmod +x test.sh

./test.sh 20160505 20160506

 其中 -- 是 hive sql 中的注释符号.

以上是关于shell 脚本运行 hive sql的主要内容,如果未能解决你的问题,请参考以下文章

dbaccess如何调用sql脚本

如何查看hivesql里执行了哪些查询

用于确保在任何给定时间仅运行一个 shell 脚本的 shell 片段 [重复]

通过 shell 脚本执行 hive udf

Hive使用

用shell写一个猜价格脚本?