hadoop - Oozie stack trace -
i'm triying submit spark job oozie using spark's sparksubmit java class suggested in
launching spark program using oozie workflow java action failed error message
main class [org.apache.oozie.action.hadoop.javamain], exit code [1]
is there way access execution error log / stack trace can see happened? comment / answer appreciated.
to java action log, use oozie's web console find hadoop job id of action. , use hadoop's yarn webui hadoop job's mapper log.
with command line interface, above steps be:
run oozie cmd hadoop job id:
oozie job -info <your job id here>
and "external id" in output, such : job_200904281535_0254
run yarn cmd hadoop job log:
yarn logs -applicationid <your app id here>
you can app id replacing "job" "application" in job id, such application_200904281535_0254
Comments
Post a Comment