I am getting Unable to load native-hadoop library for your platform... using builtin-java classes where applicable error while trying to install the hadoop version 2.8.3 on my windows 10.
I have set below environment variable in hadoop-env.cmd file: set HADOOP_OPTS=%HADOOP_OPTS% -Djava.library.path=%HADOOP_HOME%/lib/native
also, I have added below configuration
yarn-site.xml
<configuration>
<property>
<name>yarn.nodemanager.aux-services</name>
<value>mapreduce_shuffle</value>
</property>
<property>
<name>yarn.nodemanager.auxservices.mapreduce.shuffle.class</name>
<value>org.apache.hadoop.mapred.ShuffleHandler</value>
</property>
</configuration>
core-site.xml:
<configuration>
<property>
<name>fs.defaultFS</name>
<value>hdfs://localhost:9000</value>
</property>
</configuration>
hdfs-site.xml:
<configuration>
<property>
<name>dfs.replication</name>
<value>1</value>
</property>
<property>
<name>dfs.namenode.name.dir</name>
<value>/F:/tools/hadoop-2.8.3/data/namenode</value>
</property>
<property>
<name>dfs.datanode.data.dir</name>
<value>/F:/tools/hadoop-2.8.3/data/datanode</value>
</property>
</configuration>
mapred-site.xml:
<configuration>
<property>
<name>mapreduce.framework.name</name>
<value>yarn</value>
</property>
</configuration>
I have renamed mapred-site.xml.template file to mapred-site.xml
Please let me know if I have done something wrong here
I am stuck in this installation since so long. PLease help.