hue oozie执行impala sql

在hue使用oozie即workflow执行impala sql,需要使用shell调用impala-shell

一、如果开启了LDAP,impala-shell需要输入密码,则shell需要调用expect传输密码
shell脚本execute_impala_sql_file.sh如下:

#!/bin/bash
export PYTHON_EGG_CACHE=/home/hive/.python-eggs
expect  execute_impala_sql_file.exp $1

execute_impala_sql_file.exp如下:

#!/usr/bin/expect -f 
set filename [lindex $argv 0] 
 spawn impala-shell -i hostname -d default -l -u hive --auth_creds_ok_in_clear -f $filename
 expect {  
 "LDAP password for hive" { send "password" }  
 }  
 expect eof

在workflow配置shell执行即可

你可能感兴趣的:(Impala,sql,bash,数据库,impala)