5

我想运行 oozie 协调器,开始时间为 sysdate。我怎么做?
是否可以将 sysdate 作为开始日期?它会赶上吗?

4

1 回答 1

18

您可以让协调器的“开始”引用一个变量 - startTime,然后从命令行用 sysdate 覆盖它的值,例如:

 oozie job -run -config ./coord.properties -DstartTime=`date -u "+%Y-%m-%dT%H:00Z"`

如果您的系统中没有使用 UTC 时区,请调整时间格式。

示例协调员作业 xml:

<coordinator-app name="my-coord"                               
    frequency="${frequency}" start="${startTime}" end="${end}" timezone="UTC" 
    xmlns="uri:oozie:coordinator:0.4">                                    
    <action>                                                              
            <workflow> ...                                                   

协调器属性文件 coord.properties:

...
startTime=2014-05-19T22:00Z 
end=2015-01-19T22:08Z   
frequency=60 ...
于 2014-12-06T10:02:08.510 回答