在 oozie 中可能有这样的事情吗?
hive -f hiveScript.hql > output.txt
对于上述代码,我有以下 oozie hive 操作,如下所示:
<hive xmlns="uri:oozie:hive-action:0.1">
<job-tracker>${jobTracker}</job-tracker>
<name-node>${nameNode}</name-node>
<configuration>
<property>
<name>mapred.job.queue.name</name>
<value>${queueName}</value>
</property>
</configuration>
<script>hiveScript.hql</script>
</hive>
<ok to="end" />
<error to="kill" />
</hive>
我怎样才能告诉脚本输出应该去哪里?