Created on 11-20-2015 07:59 AM - edited 09-16-2022 02:49 AM
Hello,
Is there a way to attach or add in the content of the email (email action in oozie) the job logs? (the logs from all the actions of the job)
I didn't find any wf parameter that could help ..
thank you!
Created on 12-11-2015 08:36 AM - edited 12-11-2015 08:48 AM
Created 11-20-2015 11:35 AM
Oozie Rest APIs to the resucue (Which Hue too uses)
Else
one can write a shell or .ksh which captures external_Id and its related launcher attemp ids, and get the logs of individual attemp ids.
We did the later one.
Created on 11-27-2015 02:32 AM - edited 11-27-2015 02:32 AM
Thank you for your answer. I will try to do a schell script for gathering the logs.
However, is there a way to add the logs in the attachement?
Thank you!
Alina
Created 12-09-2015 12:00 PM
email action has <attachment> element which can be used to attach an hdfs file or a comma sperated hdfs files.
However, make sure the logs are added/put to an hdfs file/files before attaching thereof.
Created 12-10-2015 11:41 PM
Hello,
I saw that there is an attachement element, however, I cannot add it in hue...
Thank you!
Created on 12-11-2015 08:36 AM - edited 12-11-2015 08:48 AM
Created 12-14-2015 05:28 AM
You were right, this is linked to :
I am in CDH 5.3
Thank you!
Created 12-14-2015 11:48 PM
Hello,
I told myself that if I cannot add an attachement, I'll just add a link to my log files from HDFS.
So I did a :
yarn application -list -appStates FINISHED |grep 'my_workflow_name' |grep -Po 'application_\d+_\d+' | sed 's/.*application://' | tail -n 1
in order to find the application id ($my_application_id) that I needed. Afterwards I wanted to do a :
yarn logs -applicationId $my_application_id
However, this doesn't return any logs if it is not executed with a user that has the rights to read the logs. So I wanted to change it into:
sudo -u hdfs yarn logs -applicationId $application_id
but then I got the ERROR:
sudo: sorry, you must have a tty to run sudo
Is there a proper way to find out the logs without changing the level of securiyt security?
Thank you!
Created 12-15-2015 12:45 AM
Created 12-15-2015 07:51 AM
Hello,
I tried to do :
export HADOOP_USER_NAME=my_user load_events=`yarn logs -applicationId $application_id`
I also tried:
export HADOOP_USER_NAME=hdfs load_events=`yarn logs -applicationId $application_id`
However I get :
Logs not available at /tmp/logs/hdfs/logs/application_1449728267224_0138 Log aggregation has not completed or is not enabled.
And this is the message that I get when I do this command with un unauthorised user..