0
votes

I have setup the oozie 4.3.1 with Hadoop 2.7.3.

oozie has been setup and running successfully and able to see web console http://localhost:11000/oozie/ and also confirm using oozie status command.

Issue 1: While running the oozie examples after changing the job.properties with relevant details getting the error. nameNode=hdfs://localhost:9000 jobTracker=localhost:8032

bin/oozie job -oozie http://localhost:11000/oozie -config $OOZIE_HOME/examples/apps/map-reduce/job.properties -run

Error: E0902 : E0902: Exception occured: [No FileSystem for scheme: hdfs]

Issue 2: oozie admin -sharelibupdate

[ShareLib update status]
    host = http://f091403isdpbato05:11000/oozie
    status = java.io.IOException: No FileSystem for scheme: hdfs

hdfs path and other oozie related .xml files also updated with proper configurations.

Please let me know any solution to move ahead.

1
are you using a cloudera cluster ?M.achaibou
No i's on Hadoop cluster.Kamal Malik

1 Answers

0
votes

You can try adding the following to you core-site.xml :

<property>
   <name>fs.file.impl</name>
   <value>org.apache.hadoop.fs.LocalFileSystem</value>
   <description>The FileSystem for file: uris.</description>
</property>

<property>
   <name>fs.hdfs.impl</name>
   <value>org.apache.hadoop.hdfs.DistributedFileSystem</value>
   <description>The FileSystem for hdfs: uris.</description>
</property>