检查oozie工作流EL中是否存在属性

时间:2015-12-15 01:42:56

标签: hadoop oozie

我正在尝试根据oozie workflow.xml中另一个属性的存在来设置属性,如下所示:

<global>
    <configuration>
        <property>
            <name>outputTableName</name>
            <value>${firstNotNull(inputTableName, outputTableOverride)}</value>
        </property>
    </configuration>
</global>

但是,outputTableOverride仅在某些情况下存在。因此,它失败了,因为它有时会丢失。有没有办法检查属性是否存在?

0 个答案:

没有答案