如何在oozie coordinator的输入事件中获得一个月的第一天?

iqxoj9l9  于 2021-05-31  发布在  Hadoop
关注(0)|答案(1)|浏览(301)

我需要配置数据等待整个上个月。如果开始时间是月2日,那么如何在开始示例中获得上个月的第一天?

<input-events>
        <data-in name="WAIT_DS" dataset="DS">
            <start-instance></start-instance>
            <end-instance>${coord:current(-2)}</end-instance>
        </data-in>
    </input-events>
pes8fvy9

pes8fvy91#

我找到了解决办法:

<start-instance>${coord:current( -(coord:daysInMonth(-1) -2) )}</start-instance>

相关问题