I'm trying to run my first oozie workflow, simple <pig>
action .
Can anyone help with these two tags:
<job-tracker>[JOB-TRACKER]</job-tracker>
<name-node>[NAME-NODE]</name-node>
As I understand, paramaters refer to existing configuration.
I'm using preconfigurered environment so can you please help where to find these values?
If you have access to see Hadoop's conf files, open core-site.xml to find the name node from the below property.
<property>
<name>fs.default.name</name>
<value>hdfs://ec2-1-1-1-1.compute-1.amazonaws.com:9000</value>
</property>
Open mapred-site.xml to find the job tracker.
<property>
<name>mapred.job.tracker</name>
<value>ec2-1-1-1-1.compute-1.amazonaws.com:54311</value>
</property>
Then your values will be.
nameNode=hdfs://ec2-1-1-1-1.compute-1.amazonaws.com:9000
jobTracker=ec2-1-1-1-1.compute-1.amazonaws.com:54311
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With