标签: hive oozie
我用OOZIE启动了一个蜂巢脚本:
首先,我进行表格分析:
analyze table $db.table1 compute statistics for columns a;
然后插入:
insert into $db.table1 values ("a","b","c");
$db变量在我的job.properties文件中设置;
$db
启动脚本时,分析部分收到“找不到表格”错误。 当我删除第一行时,一切正常。该表已插入。分析表不能识别变量吗?