I have the next hive script:
SET LAB_MS_EXT_SCHEME='INTERAL';
set LAB_MS_EXT_SCHEME;
set ${hiveconf:name};
So I try to call this script from bash:
hive -hiveconf name=HELLLO -f myScript.hql
As a result I have the next output:
LAB_MS_EXT_SCHEME='INTERAL'
${hiveconf:name} is undefined
I will be very thankfull if somebody help me to pass parameters to hive script.