Submit Oozie Job from another job's java action with Kerberos
问题 I am trying to submit an Oozie job using Java Client API from another Job's java action. The cluster is using Kerberos. Here is my code: // get a OozieClient for local Oozie String oozieUrl = "http://hadooputl02.northamerica.xyz.net:11000/oozie/"; AuthOozieClient wc = new AuthOozieClient(oozieUrl); wc.setDebugMode(1); // create a workflow job configuration and set the workflow application path Properties conf = wc.createConfiguration(); conf.setProperty(OozieClient.APP_PATH, wfAppPath); conf