Search code examples
ooziehueoozie-coordinator

Create Oozie coordinator without end date with Hue


Can I create an infinite Oozie coordinator that doesn't expire (without end date) with Hue?

Please, help!


Solution

  • No. You can not create a coordinator which will never expire. Here is the Oozie Coordinator xsd reference:

        <xs:attribute name="start" type="xs:string" use="required"/>
        <xs:attribute name="end" type="xs:string" use="required"/>
    

    The like start, end is also a required attribute.

    You can created a coordinator which expires after a long time like 100 years. Technically that will be something like never expire only.