I\'m using oozie in CDH5 environment. I\'m also using the oozie web-console. I\'m not able to see any of the logs from my application. I can see hadoop logs, spark logs,
Oozie runs each Action in a different "launcher" job -- actually a YARN job with a single mapper (see exceptions below).
Whenever you see an "external ID" in the form job_000000000_0000 then you can reach the YARN logs for application_000000_0000 (yeah, "job" is the legacy naming convention from Hadoop 1, still used by JobHistory service, but YARN has another naming convention).
Your application output is actually dumped into the YARN logs for that Oozie "launcher"
<capture_output/> trick for Shell and Pig actions) at the end of the atrocely verbose "stdout" sectionBottom line:
oozie job -info ****** to get the list of Actions and the corresponding "external IDs" for your Oozie workflow executionjob_*****_** legacy ID, run yarn logs -applicationId application_*****_** | more to skim the global YARN logs, then zoom on your specific app logsB-)