0

Is is possible to know the workflow id of the next oozie job that gets generated? When oozie is restarted, its hard to know the next oozie workflow id. Any way to get it guys?

Thanks,

Vishnu Ganth

4

1 回答 1

0

我不确定是否有办法知道生成的下一个 id。

您可以做的最好的事情是控制 oozie 作业为您的应用程序设置的名称。

有一个应用程序跟踪器作业,它提交其他 oozie REST 作业。每当它提交 REST 作业时,您都可以获得您可以存储的 oozie jobID。

例如,如果您在 java 中使用 OozieClient 类 - String jobId = client.run(conf);

这样,您至少可以跟踪您正在生成的所有应用程序?

于 2015-07-07T21:30:25.567 回答