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
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
生成される次の ID を知る方法があるかどうかはわかりません。
あなたができる最善のことは、アプリケーションの oozie ジョブによって設定されている名前を制御することです。
他の oozie REST ジョブを送信するアプリケーション トラッカー ジョブを用意します。REST ジョブを送信するたびに、保存できる oozie ジョブ ID を取得できます。
たとえば、Java で OozieClient クラスを使用している場合 - String jobId = client.run(conf);
このようにして、少なくとも生成しているすべてのアプリケーションを追跡できますか?