sp_user123
sp_user123

Reputation: 502

Avoid specifying end time in Oozie Coordinator

In my oozie coordinator.xml i dont want to specify the end time. Is there any way to do that.

coordinator.xml

 <coordinator-app name="MY_APP" frequency="60" start="2009-02-01T00:00Z" end="2009-02-02T00:00Z" timezone="UTC" xmlns="uri:oozie:coordinator:0.1">
    <action>
       <workflow>
          <app-path>hdfs://localhost:9000/tmp/workflows</app-path>
       </workflow>
    </action>     
 </coordinator-app>

Upvotes: 4

Views: 1368

Answers (1)

Dmitry
Dmitry

Reputation: 2993

No. Specify some time in the distant future, like "2109-02-02T00:00Z".

Upvotes: 4

Related Questions