Oozie 协调器操作从故障节点重新运行

Oozie coordinator action rerun from fail nodes

我正在尝试使用以下命令重新运行 oozie 协调器操作。

oozie job -rerun <co-ordinator id> -action <action id>
-Doozie.wf.rerun.fail.nodes=true

但它是从头开始执行动作,而不是从故障节点开始执行。协调器忽略了 'oozie.wf.rerun.fail.nodes=true' 选项。我想念提供一些选择吗?

对于 Oozie 协调器重新运行,

使用 -failed 标记 re-runs 在 -action 中传递的协调器操作的失败工作流操作。

oozie job -rerun <co-ordinator id> -failed -action <action id>

属性 -Doozie.wf.rerun.failnodes=true 用于重新运行工作流。